diff --git a/monitor.py b/monitor.py index 32d449d..4218f47 100644 --- a/monitor.py +++ b/monitor.py @@ -168,8 +168,8 @@ class Monitor: else: if symbol in self.buy_cooldown: time_diff = current_time - self.buy_cooldown[symbol] - if time_diff.total_seconds() < 1200: - print(f"{symbol}: 매수 금지 중 (남은 시간: {1200 - time_diff.total_seconds():.0f}초)") + if time_diff.total_seconds() < 1800: + print(f"{symbol}: 매수 금지 중 (남은 시간: {1800 - time_diff.total_seconds():.0f}초)") return False buy_amount = 5100