From aca243086e869815380d863fc68f0ce3d18afea0 Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 13 Dec 2018 19:43:17 +0100 Subject: [PATCH] Fix comment --- freqtrade/strategy/interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/strategy/interface.py b/freqtrade/strategy/interface.py index 1d6ca5ac8..094831511 100644 --- a/freqtrade/strategy/interface.py +++ b/freqtrade/strategy/interface.py @@ -132,7 +132,7 @@ class IStrategy(ABC): pair = str(metadata.get('pair')) # Test if seen this pair and last candle before. - # always run if process_only_new_candles is set to true + # always run if process_only_new_candles is set to false if (not self.process_only_new_candles or self._last_candle_seen_per_pair.get(pair, None) != dataframe.iloc[-1]['date']): # Defs that only make change on new candle data.