This commit is contained in:
dsyoon
2025-08-24 23:33:42 +09:00
parent 4ac03fd662
commit 8e7dc9d1dd

View File

@@ -98,10 +98,8 @@ class MonitorStock (Monitor):
def run_schedule(self) -> None:
schedule.every().day.at("16:30").do(self.monitor_us_stocks)
schedule.every().day.at("23:30").do(self.monitor_us_stocks)
schedule.every().day.at("23:30").do(self.monitor_us_stocks)
schedule.every().day.at("05:10").do(self.monitor_us_stocks)
schedule.every().day.at("08:10").do(self.monitor_kr_stocks)
schedule.every().day.at("18:20").do(self.monitor_kr_stocks)
schedule.every().day.at("07:10").do(self.monitor_kr_stocks)
print("Scheduler started. Stock Monitoring will run at specified times.")
while True:
schedule.run_pending()