| 1234567891011 |
- use rust_decimal::Decimal;
- use serde_derive::Serialize;
- #[derive(Serialize, Clone)]
- pub struct CentralControlInfo {
- pub now_balance: Decimal, // 钱包余额
- pub unrealized_pn_l: Decimal, // 未实现盈亏
- pub pos: Decimal, // 持仓数量
- pub entry_price: Decimal, // 开仓价格
- pub now_price: Decimal, // 当前价格
- }
|