From 01774e9e8595cc8ffb2f6e86bdcae5bd8ee6332b Mon Sep 17 00:00:00 2001 From: hmo Date: Thu, 30 Jul 2026 03:47:01 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20v=5Fcombo=E8=90=BD=E5=9C=B0Step4?= =?UTF-8?q?=E2=80=94=E2=80=94=E5=8A=A8=E9=87=8F=E5=9F=BA=E5=9B=A0=E7=A5=A8?= =?UTF-8?q?position=5Fadvice=E5=8D=87=E9=87=8D=E4=BB=93x2.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- deploy/profile-scripts/strategy_lifecycle.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/deploy/profile-scripts/strategy_lifecycle.py b/deploy/profile-scripts/strategy_lifecycle.py index 7590a3d7..ed3d65ed 100644 --- a/deploy/profile-scripts/strategy_lifecycle.py +++ b/deploy/profile-scripts/strategy_lifecycle.py @@ -1484,7 +1484,10 @@ def reassess_strategy(code, name, price, cost, shares, current_action, timing_signal = "买入" _entry_source = 'momentum' action_note = (action_note + " | B动量突破: " + _bg["reason"]) if action_note else ("B动量突破: " + _bg["reason"]) - print(f" [B通道] 动量突破→买入: {_bg['reason']}", flush=True) + # 动量基因×2.5 信念仓位(2026-07-29 v_combo落地) + if position_advice in ("小仓快进快出", "中等仓位", "正常配置"): + position_advice = "重仓(动量基因×2.5)" + print(f" [B通道] 动量突破→买入+重仓×2.5: {_bg['reason']}", flush=True) except Exception as _e: print(f" [B通道] 评估异常(跳过): {_e}", flush=True)