加载中...
暂无挂单
暂无历史订单
| 交易对 | 方向 | 数量 | 入场价 | 当前价 | 止损 | 止盈 | 杠杆 | 保证金 | 未实现盈亏 | 盈亏比例 | 操作 |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ 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) }} |