diff --git a/deploy/profile-scripts/anomaly_monitor.py b/deploy/profile-scripts/anomaly_monitor.py index df020e5a..0aaad672 100644 --- a/deploy/profile-scripts/anomaly_monitor.py +++ b/deploy/profile-scripts/anomaly_monitor.py @@ -63,7 +63,9 @@ def push_anomaly(body): """ACTION 级推送(直通,不限速)""" try: from alert_helper import notify, ACTION - notify("持仓异动", body, level=ACTION) + # 2026-08-24 老莫:异动无操作建议且过于频繁→只进broadcast不推XMPP + from messenger import send as _msend + _msend(title="持仓异动", content=body, source="anomaly_monitor.py", channel="broadcast") return True except Exception as e: print(f" ⚠️ 异动推送失败: {e}", flush=True)