暂无活跃订单
| 订单ID | 交易对 | 方向 | 等级 | 入场价 | 现价 | 浮动盈亏 | 止损 | 止盈 | 仓位 | 开仓时间 | 操作 |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ order.order_id.slice(-12) }} | {{ order.symbol }} | {{ order.side === 'long' ? '做多' : '做空' }} | {{ order.signal_grade }} | ${{ order.entry_price?.toLocaleString() }} | ${{ getCurrentPrice(order.symbol)?.toLocaleString() || '-' }} |
{{ getUnrealizedPnl(order).pnl >= 0 ? '+' : '' }}{{ getUnrealizedPnl(order).percent.toFixed(2) }}%
(${{ getUnrealizedPnl(order).pnl >= 0 ? '+' : '' }}{{ getUnrealizedPnl(order).pnl.toFixed(2) }}) |
${{ order.stop_loss?.toLocaleString() }} | ${{ order.take_profit?.toLocaleString() }} | ${{ order.quantity }} | {{ formatTime(order.opened_at) }} |
暂无历史订单
| 订单ID | 交易对 | 方向 | 等级 | 入场价 | 出场价 | 盈亏 | 状态 | 平仓时间 |
|---|---|---|---|---|---|---|---|---|
| {{ order.order_id.slice(-12) }} | {{ order.symbol }} | {{ order.side === 'long' ? '做多' : '做空' }} | {{ order.signal_grade }} | ${{ order.filled_price?.toLocaleString() }} | ${{ order.exit_price?.toLocaleString() }} | {{ order.pnl_percent >= 0 ? '+' : '' }}{{ order.pnl_percent?.toFixed(2) }}% (${{ order.pnl_amount >= 0 ? '+' : '' }}{{ order.pnl_amount?.toFixed(2) }}) | {{ formatStatus(order.status) }} | {{ formatTime(order.closed_at) }} |