From 574f0076072d5ca8f492ad3dcb3c22ad5f1a5b22 Mon Sep 17 00:00:00 2001 From: "2569718930@qq.com" <2569718930@qq.com> Date: Tue, 12 May 2026 18:05:11 +0800 Subject: [PATCH] =?UTF-8?q?@=20=E4=B8=BB=E5=BE=AA=E7=8E=AF=E7=A7=BB?= =?UTF-8?q?=E9=99=A4=E5=8A=A8=E9=87=8F=E7=AA=81=E5=8F=98=E8=A7=84=E5=88=99?= =?UTF-8?q?=EF=BC=8C=E6=B8=A9=E5=BA=A6=E6=80=A5=E5=8F=98=E6=A3=80=E6=B5=8B?= =?UTF-8?q?=E7=94=B1=E6=9C=BA=E5=9C=BA=E9=AB=98=E9=A2=91=E5=BE=AA=E7=8E=AF?= =?UTF-8?q?=E7=8B=AC=E7=AB=8B=E6=89=BF=E6=8B=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 30 分钟主循环不再做 momentum_spike 检测,避免对机场城市产生 冗余告警(含市场分布/AI 建议的格式)。其余 47 城原本就没有 高频机场数据,动量检测也无实际意义。 Constraint: 其余 3 条规则(Ankara DEB、预报突破、暖平流)保持不变 Scope-risk: 低,仅影响主循环告警规则集 Tested: ruff check 通过 @ --- src/analysis/market_alert_engine.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/analysis/market_alert_engine.py b/src/analysis/market_alert_engine.py index 5de84f63..e148f1a2 100644 --- a/src/analysis/market_alert_engine.py +++ b/src/analysis/market_alert_engine.py @@ -1254,7 +1254,6 @@ def build_trading_alerts( rules: Dict[str, Dict[str, Any]] = { "ankara_center_deb_hit": _calc_ankara_center_deb_alert(city_weather, temp_symbol), - "momentum_spike": _calc_momentum_alert(city_weather, temp_symbol), "forecast_breakthrough": _calc_forecast_breakthrough_alert(city_weather, temp_symbol), "advection": _calc_advection_alert(city_weather, temp_symbol), "airport_rapid_temp_change": _calc_airport_rapid_temp_change(city_weather, temp_symbol),