账户余额
${{ account.current_balance ? account.current_balance.toLocaleString() : '0' }}
可用: ${{ account.available_margin ? account.available_margin.toLocaleString() : '0' }}
已用保证金
${{ account.used_margin ? account.used_margin.toLocaleString() : '0' }}
持仓价值
${{ account.total_position_value ? account.total_position_value.toLocaleString() : '0' }}
已实现盈亏
${{ account.realized_pnl ? account.realized_pnl.toLocaleString() : '0' }}
{{ stats.total_trades || 0 }} 笔交易
胜率
{{ stats.win_rate ? stats.win_rate.toFixed(1) : '0.0' }}%
盈亏比
{{ stats.profit_factor === Infinity ? '∞' : (stats.profit_factor ? stats.profit_factor.toFixed(2) : '0.00') }}
最大回撤
{{ stats.max_drawdown ? stats.max_drawdown.toFixed(2) : '0.00' }}%
总杠杆率
{{ account.current_total_leverage ? account.current_total_leverage.toFixed(1) : '0.0' }}x / {{ account.max_total_leverage || 10 }}x

加载中...

暂无持仓

暂无挂单

暂无历史订单

交易对 方向 数量 入场价 当前价 杠杆 保证金 未实现盈亏 盈亏比例 操作
{{ order.symbol }} {{ order.is_long ? '做多' : '做空' }} {{ order.quantity.toFixed(4) }} ${{ order.entry_price.toFixed(2) }} ${{ order.current_price ? order.current_price.toFixed(2) : '-' }} {{ order.leverage }}x ${{ order.margin.toFixed(2) }} {{ order.unrealized_pnl >= 0 ? '+' : '' }}${{ order.unrealized_pnl.toFixed(2) }} {{ order.pnl_percent >= 0 ? '+' : '' }}{{ order.pnl_percent.toFixed(2) }}%
交易对 方向 数量 挂单价 杠杆 止损 止盈 时间 操作
{{ order.symbol }} {{ order.is_long ? '做多' : '做空' }} {{ order.quantity.toFixed(4) }} ${{ order.entry_price.toFixed(2) }} {{ order.leverage }}x {{ order.stop_loss ? '$' + order.stop_loss.toFixed(2) : '-' }} {{ order.take_profit ? '$' + order.take_profit.toFixed(2) : '-' }} {{ formatTime(order.created_at) }}
交易对 方向 数量 入场价 出场价 已实现盈亏 盈亏比例 平仓原因 时间
{{ order.symbol }} {{ order.is_long ? '做多' : '做空' }} {{ order.quantity.toFixed(4) }} ${{ order.entry_price.toFixed(2) }} ${{ order.exit_price.toFixed(2) }} {{ order.realized_pnl >= 0 ? '+' : '' }}${{ order.realized_pnl.toFixed(2) }} {{ order.pnl_percent >= 0 ? '+' : '' }}{{ order.pnl_percent.toFixed(2) }}% {{ getCloseReason(order.close_reason) }} {{ formatTime(order.closed_at) }}
交易详情
总交易数 {{ stats.total_trades || 0 }}
盈利交易 {{ stats.winning_trades || 0 }}
亏损交易 {{ stats.losing_trades || 0 }}
最佳交易 {{ stats.best_trade ? stats.best_trade.toFixed(2) : '0.00' }}%
最差交易 {{ stats.worst_trade ? stats.worst_trade.toFixed(2) : '0.00' }}%
收益分析
平均盈利 ${{ stats.average_win ? stats.average_win.toFixed(2) : '0.00' }}
平均亏损 ${{ stats.average_loss ? stats.average_loss.toFixed(2) : '0.00' }}
收益率 {{ stats.return_percent >= 0 ? '+' : '' }}{{ stats.return_percent ? stats.return_percent.toFixed(2) : '0.00' }}%