From 2686a41b14e07f484c8a78c742cd8ff99ed51374 Mon Sep 17 00:00:00 2001 From: dsyoon Date: Sat, 26 Apr 2025 21:47:56 +0900 Subject: [PATCH] init --- stock_monitor.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stock_monitor.py b/stock_monitor.py index cc1b8d1..687ea03 100644 --- a/stock_monitor.py +++ b/stock_monitor.py @@ -130,7 +130,7 @@ def sendAlertMsg(info, market="US"): def monitor_us_stocks(): # 미국 주식 모니터링 - print("Monitoring US stocks...") + print("US Stocks {}".format(datetime.now().strftime('%Y-%m-%d %H:%M:%S'))) for symbol in US_STOCKS: data = get_stock_data(symbol) if data is not None and not data.empty: @@ -154,7 +154,7 @@ def monitor_us_stocks(): def monitor_kr_stocks(): # 한국 ETF 모니터링 - print("\nMonitoring Korean ETFs...") + print("KR ETFs {}".format(datetime.now().strftime('%Y-%m-%d %H:%M:%S'))) for symbol in KR_ETFS: data = get_stock_data(symbol) if data is not None and not data.empty: @@ -178,7 +178,7 @@ def monitor_kr_stocks(): def monitor_coins(): # 코인 모니터링 - print("Monitoring KR Coins...") + print("KR Coins {}".format(datetime.now().strftime('%Y-%m-%d %H:%M:%S'))) for symbol in KR_COINS: data = get_coin_data(symbol) if data is not None and not data.empty: