fix: 推荐链路+消息路由5修——①push_recommend_alert notify未导入(推荐推送全灭根因)②action判重(深套持有重复)③518880成本列错位h[2]shares→h[3]cost④_push_action分类路由:操作信号才上XMPP,异动/止损/急跌只进broadcast⑤anomaly_monitor delivery→broadcast

This commit is contained in:
xxm
2026-08-24 11:08:16 +08:00
parent f621e5466c
commit 30dbb8a667
4 changed files with 19 additions and 10 deletions
+1 -1
View File
@@ -80,7 +80,7 @@ def get_holdings():
codes = set(h[0] for h in holds) | set(w[0] for w in wl)
names = {h[0]: h[1] or h[0] for h in holds}
names.update({w[0]: w[1] or w[0] for w in wl})
costs = {h[0]: h[2] for h in holds}
costs = {h[0]: h[3] for h in holds} # 2026-08-24 修复列错位:h[2]=shares h[3]=cost518880成本2400 bug
return codes, names, costs
def check_anomalies():