From 842112c34b6182c5be220b3405154fbe238da577 Mon Sep 17 00:00:00 2001 From: hmo Date: Wed, 29 Jul 2026 23:52:23 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=B9=B4=E5=8C=96/=E6=9C=80=E7=BB=88?= =?UTF-8?q?=E8=B5=84=E4=BA=A7=E5=88=97=E6=94=B9MC=E5=85=A8=E5=8F=82?= =?UTF-8?q?=E4=B8=8E=E5=8F=A3=E5=BE=84=E2=80=94=E2=80=94=E4=B8=8E=E7=BB=BC?= =?UTF-8?q?=E5=90=88=E5=88=86=E4=B8=80=E8=87=B4=EF=BC=8C=E4=B8=8D=E5=86=8D?= =?UTF-8?q?=E7=94=A8=E9=9B=86=E4=B8=AD=E4=BB=93=E6=8C=91=E8=A3=85=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/index.html b/static/index.html index e4cfb813..fa92bec1 100644 --- a/static/index.html +++ b/static/index.html @@ -2113,8 +2113,8 @@ function renderStrategyTable(strategies) { cell('universality_score', (st.universality || {}).score, v => v + '/' + (st.universality || {}).months + '月') + cell('total_return_pct', (st.portfolio_full || {}).total_return_pct, v => v + '%' + ((st.portfolio_full||{}).std ? '±' + (st.portfolio_full||{}).std + '' : ''), 'font-bold text-amber-300') + cell('total_return_pct', pf.total_return_pct, v => v + '%', retCls + ' ' + hl(pf.total_return_pct, best.total_return_pct)) + - cell('capital_final', pf.capital_final, v => '¥' + (v/10000).toFixed(0) + '万') + - cell('cagr_pct', pf.cagr_pct, v => v + '%', hl(pf.cagr_pct, best.cagr_pct)) + + cell('capital_final', (st.portfolio_full||pf).capital_final, v => '¥' + (v/10000).toFixed(0) + '万') + + cell('cagr_pct', (st.portfolio_full||pf).cagr_pct, v => v + '%', hl((st.portfolio_full||pf).cagr_pct, best.cagr_pct)) + cell('total_trades', st.total_trades, v => (pf.positions_taken||0) + '/' + (v > 999 ? Math.round(v/1000) + 'k' : v), '', false) + cell('avg_hold_days', st.avg_hold_days, v => v + 'd') + cell('win_rate', st.win_rate, v => v + '%', hl(st.win_rate, best.win_rate)) +