From 482e46a34b2867cddfd19cf303229bb6d0ae1b58 Mon Sep 17 00:00:00 2001 From: "2569718930@qq.com" <2569718930@qq.com> Date: Thu, 5 Feb 2026 19:57:25 +0800 Subject: [PATCH] feat: include target date in the market field for price and anomaly city alerts --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index dae7e6ea..f918d474 100644 --- a/main.py +++ b/main.py @@ -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)}¢)", } )