This commit is contained in:
dsyoon
2025-09-07 19:10:09 +09:00
parent 75b6e8d227
commit 1fa1de3b0a
2 changed files with 3 additions and 3 deletions

View File

@@ -8,7 +8,7 @@ STOCK_TELEGRAM_BOT_TOKEN = "6874078562:AAEHxGDavfc0ssAXPQIaW8JGYmTR7LNUJOw"
STOCK_TELEGRAM_CHAT_ID = '574661323' STOCK_TELEGRAM_CHAT_ID = '574661323'
# 몇초 만에 다시 매수를 할 것인지 체크 # 몇초 만에 다시 매수를 할 것인지 체크
BUY_MINUTE_LIMIT = 1200 BUY_MINUTE_LIMIT = 600
# 볼린저 밴드 설정 # 볼린저 밴드 설정
BOLLINGER_PERIOD = 20 # 볼린저 밴드 기간 BOLLINGER_PERIOD = 20 # 볼린저 밴드 기간

View File

@@ -313,9 +313,9 @@ class Monitor(HTS):
buy_amount = 60000 buy_amount = 60000
elif data['signal'].iloc[-1] == 'deviation1440': elif data['signal'].iloc[-1] == 'deviation1440':
if symbol in ['BONK', 'PEPE', 'TON']: if symbol in ['BONK', 'PEPE', 'TON']:
buy_amount = 20000 buy_amount = 100000
else: else:
buy_amount = 30000 buy_amount = 150000
if data['signal'].iloc[-1] in ['movingaverage', 'deviation40', 'deviation240', 'deviation1440']: if data['signal'].iloc[-1] in ['movingaverage', 'deviation40', 'deviation240', 'deviation1440']:
if check_5_week_lowest: if check_5_week_lowest: