加载中...
暂无持仓
暂无历史订单
| 交易对 | 方向 | 持仓量 | 入场价 | 标记价 | 杠杆 | 保证金 | 未实现盈亏 | 盈亏比例 | 强平价格 |
|---|---|---|---|---|---|---|---|---|---|
| 交易对 | 方向 | 类型 | 价格 | 数量 | 成交金额 | 手续费 | 状态 | 时间 | |
| {{ formatSymbol(pos.symbol) }} | {{ pos.side === 'long' ? '做多' : '做空' }} | {{ pos.contracts || '0' }} | ${{ pos.entryPrice ? parseFloat(pos.entryPrice).toLocaleString() : '-' }} | ${{ pos.markPrice ? parseFloat(pos.markPrice).toLocaleString() : '-' }} | {{ pos.leverage }}x | ${{ pos.initialMargin ? parseFloat(pos.initialMargin).toFixed(2) : '-' }} | {{ parseFloat(pos.unrealizedPnl || 0) >= 0 ? '+' : '' }}${{ parseFloat(pos.unrealizedPnl || 0).toFixed(2) }} | {{ (pos.percentage || 0).toFixed(2) }}% | ${{ pos.liquidationPrice ? parseFloat(pos.liquidationPrice).toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}) : '-' }} |
| {{ formatSymbol(order.symbol) }} | {{ order.side === 'buy' ? '买入' : '卖出' }} | {{ order.type || 'market' }} | ${{ order.price ? parseFloat(order.price).toLocaleString() : '市价' }} | {{ order.amount || order.filled || '0' }} | ${{ order.cost ? parseFloat(order.cost).toFixed(2) : '-' }} | {{ order.fee && parseFloat(order.fee) !== 0 ? (order.fee > 0 ? '+' : '') + parseFloat(order.fee).toFixed(4) : '-' }} | {{ formatOrderStatus(order.status) }} | {{ formatTime(order.datetime || order.timestamp) }} |