This commit is contained in:
dsyoon
2025-05-01 13:34:53 +09:00
parent 2f1b6bf48f
commit 8b8a116ac0

View File

@@ -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: