diff --git a/static/index.html b/static/index.html index bbedccc0..7adc69a5 100644 --- a/static/index.html +++ b/static/index.html @@ -2117,7 +2117,7 @@ function renderStrategyTable(strategies) { cell('avg_profit_pct', st.avg_profit_pct, v => v + '%', (st.avg_profit_pct || 0) >= 0 ? 'text-green-400' : 'text-red-400') + cell('sharpe_ratio', st.sharpe_ratio, v => v, hl(st.sharpe_ratio, best.sharpe_ratio)) + cell('profit_factor', st.profit_factor, v => v, hl(st.profit_factor, best.profit_factor)) + - cell('portfolio_max_dd_pct', pf.portfolio_max_dd_pct, v => v + '%', hl(pf.portfolio_max_dd_pct, best.portfolio_max_dd_pct, true), true) + + cell('portfolio_max_dd_pct', (st.portfolio_full||pf).portfolio_max_dd_pct, v => v + '%', hl((st.portfolio_full||pf).portfolio_max_dd_pct, best.portfolio_max_dd_pct, true), true) + '' + '' + '';