From b2cc4542a46e1b4a5fc1245ba6ea964c0cb6ce0a Mon Sep 17 00:00:00 2001 From: dsyoon Date: Wed, 7 May 2025 12:11:37 +0900 Subject: [PATCH] init --- stock_monitor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stock_monitor.py b/stock_monitor.py index bfc5c5e..cda439b 100644 --- a/stock_monitor.py +++ b/stock_monitor.py @@ -371,7 +371,7 @@ def monitor_coins(): def run_schedule(): # 코인 모니터링 스케줄 (매시간 1분, 11분, 21분, 31분, 41분, 51분) - for minute in [1, 11, 21, 31, 41, 51]: + for minute in [4, 34]: schedule.every().hour.at(f":{minute:02d}").do(monitor_coins) # 미국 주식 모니터링 스케줄 (매일 저녁 5시 20분)