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

开单计划

新增计划

进行中计划

{% 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 }}
止损: {{ p.stop_loss }} | 止盈: {{ p.take_profit }}
{{ p.symbol }}
删除
{% else %}
暂无进行中的开单计划
{% endfor %}
{% if closed %}

最近已完成

{% for p in closed %}
{{ p.symbol_name or p.symbol }} {{ '做多' if p.direction == 'long' else '做空' }}
区间: {{ p.zone_lower }} ~ {{ p.zone_upper }} | 损: {{ p.stop_loss }} 盈: {{ p.take_profit }}
删除
{% endfor %}
{% endif %} {% endblock %}