{% extends "base.html" %} {% block title %}fx-quant — Status{% endblock %} {% block content %}
Trading Status
Mode {{ "PAPER" if cfg.execution.paper_mode else "LIVE" }}
Strategy {{ cfg.strategy.rule }} ({{ cfg.strategy.params.short }}/{{ cfg.strategy.params.long }})
Instruments {{ cfg.brokers[0].instruments | join(", ") }}
Granularity {{ cfg.data.candle_granularities | join(", ") }}
Loop Interval {{ cfg.execution.interval_seconds }}s
Max Positions {{ cfg.execution.max_positions }}
AI Confidence {{ cfg.ai.confidence_threshold }}
Kill Switch
{% if kill_active %}

KILL SWITCH ACTIVE

{% else %}

Trading Active

{% endif %}
Recent Activity (last 10 orders)
{% if recent_orders %} {% for row in recent_orders | reverse %} {% endfor %}
TimeInstrumentSideUnits PriceModeStatus
{{ row[0][:19] }} {{ row[1] }} {{ row[2] }} {{ row[3] }} {{ row[4] }} {{ row[6] }} {{ row[7] }}
{% else %}

No orders yet.

{% endif %}
{% endblock %}