{% extends "base.html" %} {% block title %}交易记录与复盘 - 国内期货监控系统{% endblock %} {% block content %}
| 品种 | 类型 | 方向 | 触发价 | 止损 | 止盈 | 结果 | 时间 | |
|---|---|---|---|---|---|---|---|---|
| {{ r.symbol_name or r.symbol }} | {{ r.monitor_type }} | {{ '做多' if r.direction == 'long' else '做空' }} | {{ r.trigger_price }} | {{ r.stop_loss }} | {{ r.take_profit }} | {% if r.result == '止盈' %} 止盈 {% else %} 止损 {% endif %} | {{ r.created_at[:16] if r.created_at else '' }} | 删 |
| 暂无交易记录 | ||||||||