{% extends "base.html" %} {% block title %}交易记录 - 国内期货监控系统{% endblock %} {% block content %}

交易记录

{% for t in trades %} {% else %} {% endfor %}
品种类型方向 成交止损(开仓)止盈 基数杠杆持仓分钟 开仓时间平仓时间 盈亏(元)结果操作
{{ t.symbol_name or t.symbol }} {{ t.monitor_type }} {{ '做多' if t.direction == 'long' else '做空' }} {{ t.entry_price }} {{ t.stop_loss }} {{ t.take_profit }} {{ t.lots }}手 / {{ t.margin or '-' }} {{ t.holding_minutes or 0 }} {{ (t.open_time or '')[:16].replace('T',' ') }} {{ (t.close_time or '')[:16].replace('T',' ') }} {{ t.pnl if t.pnl is not none else '-' }} {% if t.result == '止盈' %}{{ t.result }} {% elif t.result == '止损' %}{{ t.result }} {% elif t.result == '手动平仓' %}{{ t.result }} {% else %}{{ t.result }}{% endif %} {% if t.verified %}已核对{% endif %}
填入复盘 删除
暂无交易记录
{% endblock %} {% block extra_js %} {% endblock %}