{% extends "base.html" %} {% block title %}开单计划 - 国内期货监控系统{% endblock %} {% block content %}

今日计划 今日 {{ today }}

开盘前制定,当日有效;请先选择主力合约,下方为进行中计划。

{% for p in plans %}
{{ p.symbol_name or p.symbol }} {{ '多' if p.direction == 'long' else '空' }} {% if p.status == 'planned' %}待触发 {% else %}已激活{% endif %}
区间{{ p.zone_lower }}~{{ p.zone_upper }} {% if p.decision_reason %} · {{ p.decision_reason }}{% endif %} · 损{{ p.stop_loss }} 盈{{ p.take_profit }}
{% else %}
今日暂无进行中的计划
{% endfor %}

历史计划

重置
{% for p in history %} {% else %} {% endfor %}
日期品种方向决策区间决策理由状态
{{ p.plan_date or '' }} {{ p.symbol_name or p.symbol }} {{ '多' if p.direction == 'long' else '空' }} {{ p.zone_lower }}~{{ p.zone_upper }} {{ p.decision_reason or '—' }} {% if p.status == 'closed' %}完成 {% elif p.status == 'expired' %}失效 {% else %}{{ p.status }}{% endif %}
暂无历史
{% endblock %}