| 品种 | 类型 | 方向 | 成交 | 止损 | 止盈 | 基数 | 杠杆 | 持仓分钟 | 开仓时间(北京) | 平仓时间(北京) | 盈亏U | 结果 | 操作 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ r.symbol }} | {{ r.monitor_type }} | {{ '做多' if r.direction == 'long' else '做空' }} | {{ 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) }} | {{ r.margin_capital or '-' }} | {{ r.leverage or '-' }} | {{ r.effective_hold_minutes or 0 }} | {{ (r.effective_opened_at or '-')[:16] }} | {{ (r.effective_closed_at or r.created_at or '-')[:16] }} | {% set pnl_val = (r.effective_pnl_amount or 0)|float %}{{ r.effective_pnl_amount or 0 }} | {% set effective_result = r.effective_result %} {% if effective_result in ["止盈","保本止盈","移动止盈"] %}{{ effective_result }} {% elif effective_result in ["止损","强制清仓","手动平仓"] %}{{ effective_result }} {% else %}{{ effective_result }}{% endif %} |