From 5a73d204022d7366c889cd77fa10f50b4dfa24ed Mon Sep 17 00:00:00 2001 From: dsyoon Date: Sun, 10 Aug 2025 22:49:07 +0900 Subject: [PATCH] init --- monitor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/monitor.py b/monitor.py index 1667f87..5bc5879 100644 --- a/monitor.py +++ b/monitor.py @@ -131,9 +131,9 @@ class Monitor: current_time = datetime.now() if data['buy_signal'].iloc[-1] == 'fall_6p': if data['Close'].iloc[-1] > 100: - buy_amount = 1500000 + buy_amount = 1000000 else: - buy_amount = 500000 + buy_amount = 300000 if symbol in self.buy_cooldown: time_diff = current_time - self.buy_cooldown[symbol]