diff --git a/freqtrade/wallets.py b/freqtrade/wallets.py index db14ec499..1630ac600 100644 --- a/freqtrade/wallets.py +++ b/freqtrade/wallets.py @@ -382,7 +382,7 @@ class Wallets: max_stake_amount: float, trade_amount: float | None, ): - if not stake_amount: + if not stake_amount or isinstance(stake_amount, str) or stake_amount <= 0: self._local_log( f"Stake amount is {stake_amount}, ignoring possible trade for {pair}.", level="debug",