{# Copyright (c) 2025-2026 马建军. All rights reserved. 专有软件,详见 LICENSE.zh-CN.txt #} {% extends "base.html" %} {% block title %}策略记录 - 国内期货 · 交易复盘系统{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
暂无记录
{% endif %}方向:{{ '多' if r.direction == 'long' else '空' }}
首仓手数:{{ r.detail.first_lots or '—' }} · 加仓次数:{{ r.detail.add_count or 0 }} · 加仓手数:{{ r.detail.add_lots or 0 }} · 当前总手数:{{ r.detail.total_lots or '—' }}
最新止损:{{ r.detail.latest_stop_loss or '—' }} · 平仓价格:{{ r.detail.close_price or '—' }} · 盈利情况:{{ r.detail.pnl if r.detail.pnl is not none else '—' }}
{% if r.detail.legs %}| 腿 | 方式 | 手数 | 成交/触发价 | 新SL | 时间 |
|---|---|---|---|---|---|
| {{ l.leg_index or loop.index }} | {{ l.add_mode }} | {{ l.lots or '—' }} | {{ l.fill_price or l.breakthrough_price or l.limit_price or '—' }} | {{ l.new_stop_loss or '—' }} | {{ l.created_at or '—' }} |
暂无记录
{% endif %}