实盘交易服务未启用,请在配置中设置 REAL_TRADING_ENABLED=true
Bitget API 密钥未配置,请检查配置文件
账户余额
${{ account.current_balance ? account.current_balance.toLocaleString() : '0' }}
可用: ${{ account.available ? account.available.toLocaleString() : '0' }}
已用保证金
${{ account.used_margin ? account.used_margin.toLocaleString() : '0' }}
持仓价值
${{ account.total_position_value ? account.total_position_value.toLocaleString() : '0' }}
总盈亏
${{ stats.total_pnl ? stats.total_pnl.toLocaleString() : '0' }}
{{ stats.total_trades || 0 }} 笔交易
胜率
{{ stats.win_rate ? stats.win_rate.toFixed(1) : '0' }}%
盈利交易
{{ stats.winning_trades || 0 }}
亏损交易
{{ stats.losing_trades || 0 }}
活跃订单
{{ activeOrders.length }}
| 交易对 |
方向 |
等级 |
入场价 |
当前价 |
数量 |
杠杆 |
止损 |
止盈 |
盈亏 |
状态 |
时间 |
| {{ order.symbol }} |
{{ order.side === 'long' ? '做多' : '做空' }}
|
{{ order.signal_grade || 'D' }}
|
${{ order.entry_price ? order.entry_price.toLocaleString() : '-' }} |
${{ order.current_price ? order.current_price.toLocaleString() : '-' }} |
${{ order.quantity ? order.quantity.toLocaleString() : '-' }} |
{{ order.leverage || 1 }}x |
${{ order.stop_loss ? order.stop_loss.toLocaleString() : '-' }} |
${{ order.take_profit ? order.take_profit.toLocaleString() : '-' }} |
{{ order.pnl >= 0 ? '+' : '' }}${{ order.pnl.toFixed(2) }}
-
|
{{ formatStatus(order.status) }}
|
{{ formatTime(order.created_at) }} |