diff --git a/freqtrade/freqtradebot.py b/freqtrade/freqtradebot.py index 97e7e88d2..d67a2aa3a 100644 --- a/freqtrade/freqtradebot.py +++ b/freqtrade/freqtradebot.py @@ -781,6 +781,10 @@ class FreqtradeBot(LoggingMixin): ) if stake_amount is not None and stake_amount > 0.0: + if self.state == State.PAUSED: + logger.debug("Position adjustment aborted because the bot is in PAUSED state") + return + # We should increase our position if self.strategy.max_entry_position_adjustment > -1: count_of_entries = trade.nr_of_successful_entries