rename custom_entry_price kwarg to align it to the interface

This commit is contained in:
axel
2021-08-03 17:03:27 -04:00
parent b3dafb378e
commit b644233ead
2 changed files with 2 additions and 2 deletions

View File

@@ -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: