From 70ba039730027925efd83ae96665e31a0aac2086 Mon Sep 17 00:00:00 2001 From: dsyoon Date: Wed, 1 Feb 2023 00:28:42 +0900 Subject: [PATCH] init --- Bithumb_minute.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Bithumb_minute.py b/Bithumb_minute.py index f174217..8e59226 100644 --- a/Bithumb_minute.py +++ b/Bithumb_minute.py @@ -583,15 +583,15 @@ class Bithumb_minute(HTS): price = self.MAX_BUY_PRICE first_digit = int(price / 100) if first_digit < 3: - price = 20000 + price = 50000 elif 3 <= first_digit < 4: - price = 15000 + price = 30000 elif 4 <= first_digit < 5: - price = 10000 + price = 15000 elif 5 <= first_digit < 6: price = 7000 elif 6 <= first_digit: - price = 5000 + price = 3000 return price def buyRealTime(self, ticker, analyzed_day=120, isRealTime=False):