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)}")