From 8b8a116ac0937c66616a1eda2688a9649b0cdf5c Mon Sep 17 00:00:00 2001 From: dsyoon Date: Thu, 1 May 2025 13:34:53 +0900 Subject: [PATCH] init --- stock_monitor.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stock_monitor.py b/stock_monitor.py index a7ca2ca..dfbbafa 100644 --- a/stock_monitor.py +++ b/stock_monitor.py @@ -352,10 +352,12 @@ def run_schedule(): schedule.every().hour.at(f":{minute:02d}").do(monitor_coins) # 미국 주식 모니터링 스케줄 (매일 저녁 5시 20분) - schedule.every().day.at("17:20").do(monitor_us_stocks) + schedule.every().day.at("16:30").do(monitor_us_stocks) + schedule.every().day.at("07:20").do(monitor_us_stocks) # 한국 ETF 모니터링 스케줄 (매일 오전 8시) schedule.every().day.at("18:20").do(monitor_kr_stocks) + schedule.every().day.at("07:10").do(monitor_kr_stocks) print("Scheduler started. Monitoring will run at specified times.") while True: