POSITION_SIZING_MODE,须无仓后重启)
{% if position_sizing_mode == 'full_margin' %}
|全仓:合约可用×{{ full_margin_buffer_ratio }},BTC/ETH {{ btc_leverage }}x、其它 {{ alt_leverage }}x,单仓;张数按交易所精度
{% else %}
|以损定仓:风险 {{ risk_percent }}%
{% endif %}
|移动保本:下单可勾选关闭;开启时 {{ breakeven_rr_trigger }}R 触发(每 1R 阶梯上移),偏移 {{ breakeven_offset_pct }}%
将先撤销该合约已有 TP/SL,再按下列价格重挂。
| 品种 | 类型 | 方向 | 成交 | 止损(开仓) | 止盈 | 基数 | 杠杆 | 持仓分钟 | 开仓时间(北京) | 平仓时间(北京) | 盈亏U | 结果 | 操作 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ r.symbol }} | {{ r.monitor_type }}{% if r.key_signal_type %} · {{ r.key_signal_type }}{% endif %} | {{ '做多' if r.direction == 'long' else '做空' }} | {{ price_fmt(r.symbol, r.trigger_price) }} | {% set stop_show = r.display_open_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 != '' %}{{ funds_fmt(r.margin_capital) }}{% else %}-{% endif %} | {{ 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 %}{{ funds_fmt(r.effective_pnl_amount or 0) }}{% if r.display_pnl_source == 'exchange' %}所{% elif r.display_pnl_source != 'reviewed' %}估{% endif %} | {% set effective_result = r.effective_result %} {% if effective_result in ["止盈","保本止盈","移动止盈"] %}{{ effective_result }} {% elif effective_result in ["止损","强制清仓","手动平仓"] %}{{ effective_result }} {% else %}{{ effective_result }}{% endif %} |