From d85debf67305d470613b7eab2f57d219db863a1e Mon Sep 17 00:00:00 2001 From: dsyoon Date: Sun, 7 Sep 2025 19:34:44 +0900 Subject: [PATCH] init --- monitor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitor.py b/monitor.py index 032ab7b..091046f 100644 --- a/monitor.py +++ b/monitor.py @@ -330,7 +330,7 @@ class Monitor(HTS): # 매수를 저장함 self._save_buy_cooldown() - print(f"{KR_COINS[symbol]} ({symbol}) [{data['signal'].iloc[-1]}], 현재가: {data['Close'].iloc[-1]:.4f}, 20분간 매수 금지 시작") + print(f"{KR_COINS[symbol]} ({symbol}) [{data['signal'].iloc[-1]}], 현재가: {data['Close'].iloc[-1]:.4f}, {int(BUY_MINUTE_LIMIT/60)}분간 매수 금지 시작") self.sendMsg("{}".format(self.format_message(symbol, KR_COINS[symbol], data['Close'].iloc[-1], data['signal'].iloc[-1], buy_amount))) except Exception as e: print(f"Error buying {symbol}: {str(e)}")