账户余额
${{ account.current_balance ? account.current_balance.toLocaleString() : '0' }}
可用: ${{ account.available_margin ? account.available_margin.toLocaleString() : '0' }}
已实现盈亏
${{ stats.total_pnl ? stats.total_pnl.toLocaleString() : '0' }}
{{ stats.total_trades || 0 }} 笔交易
收益率
{{ stats.total_pnl_percent >= 0 ? '+' : '' }}{{ stats.total_pnl_percent ? stats.total_pnl_percent.toFixed(2) : '0.00' }}%
初始资金: $10,000
胜率
{{ 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' }}%
实时价格
{{ symbol }} ${{ price.toLocaleString() }}

加载中...

暂无挂单

暂无历史订单

交易对 方向 数量 入场价 当前价 止损 止盈 杠杆 保证金 未实现盈亏 盈亏比例 操作
{{ order.symbol }} {{ order.side === 'long' ? '做多' : '做空' }} {{ formatNumber(order.quantity, 4) }} {{ formatCurrency(order.display_entry_price) }} {{ formatCurrency(order.current_price) }} {{ formatCurrency(order.stop_loss) }} {{ formatCurrency(order.take_profit) }} {{ order.leverage || 0 }}x {{ formatCurrency(order.margin) }} {{ formatSignedCurrency(order.unrealized_pnl) }} {{ formatSignedPercent(order.pnl_percent) }}
交易对 方向 规模 挂单信息 风控目标 仓位占用 信号 时间 操作
{{ order.symbol }} {{ order.side === 'long' ? '做多' : '做空' }}
{{ formatNumber(order.quantity, 4) }}
杠杆 {{ order.leverage || 0 }}x
{{ formatCurrency(order.display_entry_price) }}
现价 {{ formatCurrency(order.current_price) }}
{{ order.distance_text }}
{{ formatCurrency(order.stop_loss) }}
止损 {{ formatOptionalSignedPercent(order.stop_loss_percent) }}
{{ formatCurrency(order.take_profit) }}
止盈 {{ formatOptionalSignedPercent(order.take_profit_percent) }}
盈亏比 {{ order.risk_reward_text }}
{{ formatCurrency(order.margin) }}
保证金
{{ formatCurrency(order.expected_position_value) }}
名义仓位
{{ order.signal_grade_text }}
{{ order.signal_type_text }} {{ order.confidence_text }} {{ order.entry_type_text }}
{{ formatTime(order.created_at) }}
交易对 方向 数量 入场价 出场价 实际收益 收益率 状态 时间 操作
{{ order.symbol }} {{ order.side === 'long' ? '做多' : '做空' }} {{ order.quantity ? order.quantity.toFixed(4) : '0.0000' }} {{ order.entry_price ? '$' + order.entry_price.toFixed(2) : '$0.00' }} {{ order.exit_price ? '$' + order.exit_price.toFixed(2) : '$0.00' }} {{ order.pnl_amount >= 0 ? '+' : '' }}${{ order.pnl_amount ? order.pnl_amount.toFixed(2) : '0.00' }} {{ order.pnl_percent >= 0 ? '+' : '' }}{{ order.pnl_percent ? order.pnl_percent.toFixed(2) : '0.00' }}% {{ getStatusText(order.status) }} {{ formatTime(order.closed_at) }}
累计收益率
{{ stats.total_pnl_percent >= 0 ? '+' : '' }}{{ stats.total_pnl_percent ? stats.total_pnl_percent.toFixed(2) : '0.00' }}%
总盈亏
{{ stats.total_pnl >= 0 ? '+' : '' }}${{ stats.total_pnl ? stats.total_pnl.toFixed(2) : '0.00' }}
胜率
{{ 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.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.max_drawdown ? stats.max_drawdown.toFixed(2) : '0.00' }}%
收益率 {{ stats.return_percent >= 0 ? '+' : '' }}{{ stats.return_percent ? stats.return_percent.toFixed(2) : '0.00' }}%