diff --git a/static/index.html b/static/index.html
index b8a1ddaa..93f58445 100644
--- a/static/index.html
+++ b/static/index.html
@@ -2076,7 +2076,7 @@ async function renderResearchCombo() {
'' + ({trend_up:'📈 趋势市', choppy:'〰️ 震荡市', trend_down:'📉 下跌市'}[rt.regime] || rt.regime) + '' +
'' + rt.active + '' +
'' + rt.action + ' · ' + rt.desc + '' +
- (active ? '当前生效' : '') +
+ (active ? '当前生效' : '') +
'';
}
h += '';
@@ -2091,21 +2091,21 @@ async function renderResearchCombo() {
const yearly5 = m.positions_taken_5slot && m.positions_taken_5slot > 0 ? Math.round(m.positions_taken_5slot / 10) : '—';
h += '
' +
- '
单笔均收益(毛利)
' + (m.avg_profit_pct != null ? m.avg_profit_pct + '%' : '—') + '
' +
- '
组合年化(扣费)
' + (m.cagr_pct != null ? m.cagr_pct + '%' : '—') + '
' +
- '
组合10年收益
' + (m.return_pct != null ? m.return_pct + '%' : '—') + '
' +
+ '
单笔均收益(毛利)
' + (m.avg_profit_pct != null ? m.avg_profit_pct + '%' : '—') + '
' +
+ '
组合年化(扣费)
' + (m.cagr_pct != null ? m.cagr_pct + '%' : '—') + '
' +
+ '
组合10年收益
' + (m.return_pct != null ? m.return_pct + '%' : '—') + '
' +
'
' +
'' +
- '
胜率
' + (m.win_rate != null ? m.win_rate + '%' : '—') + '
' +
- '
信号总数
' + (m.trades != null ? (m.trades > 999 ? Math.round(m.trades/1000) + 'k' : m.trades) : '—') + '
' +
- '
组合执行
' + (m.positions_taken_5slot != null ? m.positions_taken_5slot + '笔' : '—') + '
' +
- '
覆盖月
' + (u.months || '—') + '
' +
+ '
胜率
' + (m.win_rate != null ? m.win_rate + '%' : '—') + '
' +
+ '
信号总数
' + (m.trades != null ? (m.trades > 999 ? Math.round(m.trades/1000) + 'k' : m.trades) : '—') + '
' +
+ '
组合执行
' + (m.positions_taken_5slot != null ? m.positions_taken_5slot + '笔' : '—') + '
' +
+ '
覆盖月
' + (u.months || '—') + '
' +
'
' +
- '均持' + (m.avg_hold_days != null ? m.avg_hold_days + '天' : '—') + ' · 回撤' + (m.max_dd_pct != null ? m.max_dd_pct + '%' : '—') + ' · 组合年均' + yearly5 + '笔(人工可操作)
' +
- (v === 'v_mr' ? '📋 实盘链路:22k信号 → 组合模拟只执行' + (m.positions_taken_5slot || 0) + '笔 → 每日扫描器只挑最超跌少数候选(2026-08-02首跑仅3只)→ 人工确认建仓。22k是候选池,不是操作量。
' : '') +
+ '均持' + (m.avg_hold_days != null ? m.avg_hold_days + '天' : '—') + ' · 回撤' + (m.max_dd_pct != null ? m.max_dd_pct + '%' : '—') + ' · 组合年均' + yearly5 + '笔(人工可操作)
' +
+ (v === 'v_mr' ? '📋 实盘链路:22k信号 → 组合模拟只执行' + (m.positions_taken_5slot || 0) + '笔 → 每日扫描器只挑最超跌少数候选(2026-08-02首跑仅3只)→ 人工确认建仓。22k是候选池,不是操作量。
' : '') +
'';
}
h += '';