From 970a4c3bf76de077a27a88ede0331a8a6edd50ea Mon Sep 17 00:00:00 2001 From: Jean-Baptiste LE STANG Date: Tue, 30 Jan 2018 21:41:01 +0100 Subject: [PATCH] Fix documentation --- freqtrade/strategy/default_strategy.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 """