-
- 数量
- {parseFloat(trade.quantity).toFixed(4)}
-
-
- 名义
- {notional >= 0.01 ? notional.toFixed(2) : notional.toFixed(4)} USDT
-
-
- 保证金
- {margin >= 0.01 ? margin.toFixed(2) : margin.toFixed(4)} USDT
-
-
- 入场价
- {parseFloat(trade.entry_price).toFixed(4)}
-
-
- 出场价
- {trade.exit_price ? parseFloat(trade.exit_price).toFixed(4) : '-'}
-
-
- 盈亏
- = 0 ? 'positive' : 'negative'}`}>
- {pnl.toFixed(2)} USDT
-
-
-
- 盈亏比例
- = 0 ? 'positive' : 'negative'}`}>
- {pnlPercent >= 0 ? '+' : ''}{pnlPercent.toFixed(2)}%
-
-
- {trade.exit_reason_display && (
-
- 平仓类型
- {trade.exit_reason_display}
-
- )}
- {(trade.entry_order_id || trade.exit_order_id) && (
-
- 币安订单号
-
- {trade.entry_order_id ? `开仓: ${trade.entry_order_id}` : ''}
- {trade.entry_order_id && trade.exit_order_id ? ' / ' : ''}
- {trade.exit_order_id ? `平仓: ${trade.exit_order_id}` : ''}
-
-
- )}
-
-
- 入场:
- {formatTime(trade.entry_time)}
-
- {trade.exit_time && (
-
- 平仓:
- {formatTime(trade.exit_time)}
-
- )}
+
+
平均盈利 / 平均亏损(期望 3:1):{Number(stats.avg_win_loss_ratio || 0).toFixed(2)} : 1
+
总交易量(名义):{Number(stats.total_notional_usdt || 0).toFixed(2)} USDT