From 793d090561974a7a99470302c787b3f06028e86b Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 13 Dec 2021 19:29:07 +0100 Subject: [PATCH] Improve log message wording for rejected stake amounts closes #6064 --- freqtrade/wallets.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/freqtrade/wallets.py b/freqtrade/wallets.py index d10847099..98a39ea2d 100644 --- a/freqtrade/wallets.py +++ b/freqtrade/wallets.py @@ -260,8 +260,8 @@ class Wallets: if self._log: logger.info( f"Adjusted stake amount for pair {pair} is more than 30% bigger than " - f"the desired stake ({stake_amount} * 1.3 > {max_stake_amount}), " - f"ignoring trade." + f"the desired stake amount of ({stake_amount:.8f} * 1.3 = " + f"{stake_amount * 1.3:.8f}) < {min_stake_amount}), ignoring trade." ) return 0 stake_amount = min_stake_amount