持仓数量 {{ activeOrders.length }}
总仓位 ${{ totalPosition.toFixed(2) }}
浮动盈亏 {{ totalUnrealizedPnl >= 0 ? '+' : '' }}${{ totalUnrealizedPnl.toFixed(2) }} ({{ totalUnrealizedPnlPercent >= 0 ? '+' : '' }}{{ totalUnrealizedPnlPercent.toFixed(2) }}%)
加载中...

暂无活跃订单

订单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) }}

按信号等级统计

{{ grade }} 级信号
交易数 {{ data.count }}
胜率 {{ data.win_rate.toFixed(1) }}%
总盈亏 ${{ data.total_pnl.toFixed(2) }}

按交易对统计

{{ symbol }}
交易数 {{ data.count }}
胜率 {{ data.win_rate.toFixed(1) }}%
总盈亏 ${{ data.total_pnl.toFixed(2) }}