diff --git a/freqtrade/freqtradebot.py b/freqtrade/freqtradebot.py index ad8d0b9c4..2592ccc91 100644 --- a/freqtrade/freqtradebot.py +++ b/freqtrade/freqtradebot.py @@ -483,7 +483,7 @@ class FreqtradeBot(LoggingMixin): custom_entry_price = strategy_safe_wrapper(self.strategy.custom_entry_price, default_retval=stake_amount)( pair=pair, current_time=datetime.now(timezone.utc), - current_rate=buy_limit_requested) + proposed_rate=buy_limit_requested) buy_limit_requested = custom_entry_price diff --git a/freqtrade/strategy/interface.py b/freqtrade/strategy/interface.py index d04524687..1cbc334f0 100644 --- a/freqtrade/strategy/interface.py +++ b/freqtrade/strategy/interface.py @@ -664,7 +664,7 @@ class IStrategy(ABC, HyperStrategyMixin): entry_price_value = strategy_safe_wrapper(self.custom_entry_price, default_retval=None)( pair=pair, current_time=current_time, - current_rate=current_rate) + proposed_rate=current_rate) if entry_price_value is not None: if entry_price_value > low: