| 品种 | 类型 | 方向 | 成交 | 止损 | 止盈 | 基数 | 杠杆 | 持仓分钟 | 开仓(展示) | 平仓(展示) | 盈亏U(展示) | 结果 | 操作 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ r.symbol }} | {{ r.monitor_type }} | {{ '做多' if r.direction == 'long' else '做空' }} | {{ price_fmt(r.symbol, r.trigger_price) }} | {% set stop_show = r.effective_stop_loss or r.initial_stop_loss or r.stop_loss %} {% set tp_show = r.effective_take_profit or r.take_profit %}{{ price_fmt(r.symbol, stop_show) }} | {{ price_fmt(r.symbol, tp_show) }} | {% if r.margin_capital is not none and r.margin_capital != '' %}{{ money_fmt(r.margin_capital) }}{% else %}-{% endif %} | {{ r.leverage or '-' }} | {{ r.effective_hold_minutes or 0 }} | {{ r.display_opened_at }} | {{ r.display_closed_at }} | {% set pnl_val = (r.display_pnl_amount or 0)|float %}{{ money_fmt(r.display_pnl_amount) }}{% if r.monitor_type == '趋势回调' and r.display_pnl_source == 'local' %}估{% elif r.monitor_type == '趋势回调' and r.display_pnl_source == 'exchange' %}所{% endif %} | {% set effective_result = r.effective_result %} {% if effective_result in ["止盈","保本止盈","移动止盈"] %}{{ effective_result }} {% elif effective_result in ["止损","强制清仓","手动平仓"] %}{{ effective_result }} {% else %}{{ effective_result }}{% endif %} |
| ID | 时间 | 品种 | 方向 | 杠杆 | 状态 | 快照余额U | 操作 |
|---|---|---|---|---|---|---|---|
| {{ s.id }} | {{ (s.preview_created_at or '-')[:16] }} | {{ s.symbol }} | {{ '多' if s.direction == 'long' else '空' }} | {{ s.leverage }}x | {{ s.outcome_label }}{% if s.executed_plan_id %} #{{ s.executed_plan_id }}{% endif %} | {{ money_fmt(s.snapshot_available_usdt) }} |