{% extends "base.html" %} {% block title %}fx-quant — Backtest Results{% endblock %} {% block content %}
| Month | Start Equity | End Equity | P&L ($) | P&L (%) | Performance |
|---|---|---|---|---|---|
| {{ m.month }} | ${{ "{:,.2f}".format(m.start_equity) }} | ${{ "{:,.2f}".format(m.end_equity) }} | {{ "{:+,.2f}".format(m.pnl) }} | {{ "{:+.2f}".format(m.pnl_pct) }}% |
{% set bar_width = [m.pnl_pct | abs * 10, 100] | min %}
{% if m.pnl >= 0 %}
|