From ce967372a585a88473e8248303dd31c6fe865d6f Mon Sep 17 00:00:00 2001 From: xxm Date: Sun, 16 Aug 2026 13:44:09 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20B=E7=BB=84entry=E6=96=B9=E5=90=91?= =?UTF-8?q?=E6=98=A0=E5=B0=84(>=3D=E8=BD=AC=5Fmin)=E2=80=94=E2=80=94news3>?= =?UTF-8?q?=3D1=E6=AD=A3=E7=A1=AE=E6=98=A0=E5=B0=84=E4=B8=BAnews3=5Fmin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- evolution/b_group_miner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evolution/b_group_miner.py b/evolution/b_group_miner.py index edf1401b..6325cfe9 100644 --- a/evolution/b_group_miner.py +++ b/evolution/b_group_miner.py @@ -87,7 +87,7 @@ def scan3(market, regime, panel, min_n=500): def to_entry(cond_dict): entry = {} for feat, (op, val) in cond_dict.items(): - key = feat + ("_min" if op == ">" else "_max") + key = feat + ("_min" if (op == ">" or op == ">=") else "_max") entry[key] = float(val) return entry