diff --git a/docs/strategy-callbacks.md b/docs/strategy-callbacks.md index e3cc72ba1..129e15b32 100644 --- a/docs/strategy-callbacks.md +++ b/docs/strategy-callbacks.md @@ -621,7 +621,7 @@ class DigDeeperStrategy(IStrategy): :param pair: Pair that's currently analyzed :param trade: trade object. :param current_time: datetime object, containing the current datetime - :param current_rate: Rate, calculated based on pricing settings in ask_strategy. + :param current_rate: Current buy rate. Use `exchange.get_rate` if you need sell rate. :param current_profit: Current profit (as ratio), calculated based on current_rate. :param **kwargs: Ensure to keep this here so updates to this won't break your strategy. :return float: Stake amount to adjust your trade diff --git a/freqtrade/strategy/interface.py b/freqtrade/strategy/interface.py index 92a79488c..3a3b53df4 100644 --- a/freqtrade/strategy/interface.py +++ b/freqtrade/strategy/interface.py @@ -398,7 +398,7 @@ class IStrategy(ABC, HyperStrategyMixin): :param pair: Pair that's currently analyzed :param trade: trade object. :param current_time: datetime object, containing the current datetime - :param current_rate: Rate, calculated based on pricing settings in ask_strategy. + :param current_rate: Current buy rate. Use `exchange.get_rate` if you need sell rate. :param current_profit: Current profit (as ratio), calculated based on current_rate. :param **kwargs: Ensure to keep this here so updates to this won't break your strategy. :return float: Stake amount to adjust your trade