From 682528444fb1a55a3113942efeacc931e8b57ba8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Delacotte?= Date: Wed, 26 Nov 2025 18:44:18 +0100 Subject: [PATCH] Frictrade --- Frictrade.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Frictrade.py b/Frictrade.py index bae54d7..d0f8a93 100644 --- a/Frictrade.py +++ b/Frictrade.py @@ -653,8 +653,8 @@ class Frictrade(IStrategy): self.printLog(exception) return None - if current_profit > 0 and (increase >= dca_threshold and self.wallets.get_available_stake_amount() > 0) \ - and (last_candle['max_rsi_24'] < 60): + if current_profit > dca_threshold and (increase >= dca_threshold and self.wallets.get_available_stake_amount() > 0) \ + and (last_candle['max_rsi_24'] < 80): try: self.pairs[pair]['previous_profit'] = profit stake_amount = min(self.wallets.get_available_stake_amount(), self.adjust_stake_amount(pair, last_candle))