feat: include target date in the market field for price and anomaly city alerts

This commit is contained in:
2569718930@qq.com
2026-02-05 19:57:25 +08:00
parent 9617425c6e
commit 482e46a34b
+2 -2
View File
@@ -327,7 +327,7 @@ def main():
city_alerts.append(
{
"type": "price",
"market": question,
"market": f"{question} ({target_date or '今日'})",
"msg": f"{trigger_side}进入锁定区间 {trigger_price}¢",
}
)
@@ -352,7 +352,7 @@ def main():
city_alerts.append(
{
"type": "anomaly",
"market": question,
"market": f"{question} ({target_date or '今日'})",
"msg": f"{msg} (当前 {int(buy_yes_price * 100)}¢)",
}
)