Run Status
{{ status }}
{{ message }}
Latest Report
{% if latest_report %}
Run at {{ latest_report.run_at }}
Events: {{ latest_report.events_path }}
Processed: {{ latest_report.report.processed_events }}
Opportunities: {{ latest_report.report.opportunities_seen }}
Trades: {{ latest_report.report.trades_executed }}
Realized P&L: {{ '%.4f'|format(latest_report.report.realized_pnl_usd) }} USD
Max drawdown: {{ '%.4f'|format(latest_report.report.max_drawdown_usd) }} USD
{% else %}
No runs yet.
{% endif %}
Run Backtest
Recent Runs
{% if recent_reports %} {% for item in recent_reports %}
{{ item.run_at }} | {{ item.events_path }} | trades={{ item.report.trades_executed }} | pnl={{ '%.4f'|format(item.report.realized_pnl_usd) }} USD
{% endfor %} {% else %}
No recent reports yet.
{% endif %}