From fe808aa2b1e5102d3ed0681b3112f468fac1637b Mon Sep 17 00:00:00 2001 From: dsyoon Date: Sat, 16 Aug 2025 09:20:02 +0900 Subject: [PATCH] init --- monitor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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