{% extends "base.html" %} {% block title %}fx-quant — Status{% endblock %} {% block content %}
| 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 ACTIVE
{% else %}Trading Active
{% endif %}| Time | Instrument | Side | Units | Price | Mode | Status |
|---|---|---|---|---|---|---|
| {{ row[0][:19] }} | {{ row[1] }} | {{ row[2] }} | {{ row[3] }} | {{ row[4] }} | {{ row[6] }} | {{ row[7] }} |
No orders yet.
{% endif %}