diff --git a/freqtrade/strategy/default_strategy.py b/freqtrade/strategy/default_strategy.py index ba5bca404..7a4792307 100644 --- a/freqtrade/strategy/default_strategy.py +++ b/freqtrade/strategy/default_strategy.py @@ -250,15 +250,15 @@ class DefaultStrategy(IStrategy): we are notified that a given pair was sold :param pair: the pair that was is concerned by the dataframe """ - + def did_cancel_buy(self, pair: str): """ - we are notified that a given pair was bought + we are notified that a given pair buy was not filled :param pair: the pair that was is concerned by the dataframe """ def did_cancel_sell(self, pair: str): """ - we are notified that a given pair was sold + we are notified that a given pair was not sold :param pair: the pair that was is concerned by the dataframe """