{% extends "base.html" %} {% block title %}fx-quant — Status{% endblock %} {% block content %}
Trading Status
Mode {{ "PAPER" if cfg.phase2.paper_mode else "LIVE" }}
Poll Interval {{ cfg.phase2.poll_interval_seconds }}s
Starting Equity ${{ "{:,.0f}".format(cfg.phase2.starting_equity) }}
Max Daily DD {{ cfg.phase2.max_daily_drawdown_pct }}%
Kill Switch
{% if kill_active %}

KILL SWITCH ACTIVE

{% else %}

Trading Active

{% endif %}
Strategy Slots
{% for s in cfg.phase2.strategies %} {% endfor %}
SlotStrategyPairTimeframeHTFStatus
{{ loop.index }} {{ s.name }} {{ s.pair }} {{ s.timeframe }} {{ s.htf_timeframe | default("—", true) }} {% if s.enabled %} Enabled {% else %} Disabled {% 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 %}