From 2c0a0ef947f9f7018b27205e692e4b564fa3ffa6 Mon Sep 17 00:00:00 2001 From: xxm Date: Sun, 16 Aug 2026 14:29:36 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=BF=9B=E5=8C=96=E4=B8=AD=E5=BF=83AB?= =?UTF-8?q?=E5=AF=B9=E7=85=A7=E2=80=94=E2=80=94B=E7=BB=84=E5=80=99?= =?UTF-8?q?=E9=80=89=E6=98=BE=E7=A4=BA=E5=AF=B9=E7=85=A7A=E7=BB=84?= =?UTF-8?q?=E6=BF=80=E6=B4=BB=E7=AD=96=E7=95=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/index.html | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/static/index.html b/static/index.html index 46f9ad74..b95478b3 100644 --- a/static/index.html +++ b/static/index.html @@ -2270,16 +2270,19 @@ async function loadEvolutionBox() { h += '
🧪 假设归纳: 暂无显著假设(交易样本不足或特征均匀)
'; } - // ── 2026-08-16 B组候选(方向二:由果及因挖掘,AB对照)── - h += '
🔬 B组候选挖掘(方向二,由果及因 vs A组对照):
'; + // ── 2026-08-16 B组候选 + AB对照(方向二:由果及因挖掘 vs A组)── + h += '
🔬 B组挖掘 + AB对照(方向二):
'; + // A组 = 当前激活策略(baseline),B组 = 候选 + const aNames = d.baseline ? Object.keys(d.baseline) : []; if (d.b_group && d.b_group.length > 0) { for (const b of d.b_group.slice(0,6)) { h += '
' + - '['+b.regime+'] ' + b.hypothesis + - ' ' + (b.trades_est||'?') + '样本 好果率' + (b.good_rate || b.ok_rate || b.big_rate || '?') + '%
'; + '
[B组 '+b.regime.replace('trend_','')+'] ' + b.hypothesis + + ' ' + (b.trades_est||'?') + '样本 好果率' + (b.good_rate || b.ok_rate || b.big_rate || '?') + '%
' + + '
对照A组(' + b.regime.replace('trend_','') + '): ' + (aNames.join(', ') || '—') + '
'; } } else { - h += '
暂无B组候选(全市场单/双因子区分度不足——数据事实,需多因子叠加或更细温区)
'; + h += '
暂无B组候选(由果及因扫描中,数据事实:震荡/下跌市因子区分度不足)
'; } // ── 2026-08-16 策略资格概览(温区适应评估)──