| 币对 | 持仓数量 | 均价 | 现价 | 成本(U) | 市值(U) | 浮动盈亏 | 涨幅 |
|---|---|---|---|---|---|---|---|
| {{ p.symbol.replace('USDT','') }} | {{ p.qty }} | {{ Number(p.avg_price) < 0.001 ? Number(p.avg_price).toFixed(8) : Number(p.avg_price).toFixed(4) }} | {{ Number(p.cur_price) < 0.001 ? Number(p.cur_price).toFixed(8) : Number(p.cur_price).toFixed(4) }} | {{ p.cost }} | {{ p.market_val }} | {{ p.pnl>=0?'+':''}}{{ p.pnl.toFixed(4) }} | {{ p.pnl_pct>=0?'+':''}}{{ p.pnl_pct }}% |
| 日期 | 涉及币对 | 买入次数 | 卖出次数 | 买入金额(U) | 卖出金额(U) | 当日已实现盈亏 | 胜率 |
|---|---|---|---|---|---|---|---|
| {{ d.date }} | {{ s.replace('USDT','') }} | 买 {{ d.buy_count }} | 卖 {{ d.sell_count }}-- | {{ d.buy_amount.toFixed(2) }} | {{ d.sell_amount > 0 ? d.sell_amount.toFixed(2) : '--' }} | 未平仓 {{ d.realized>=0?'+':'' }}{{ d.realized.toFixed(4) }} | {{ d.win_rate }}% ({{ d.win_count }}胜{{ d.lose_count }}负) -- |