From 853d67d8d905cb8a6d6b0f1a8ae5eb7cb5d89a1e Mon Sep 17 00:00:00 2001 From: creslin Date: Thu, 2 Aug 2018 12:54:45 +0000 Subject: [PATCH] Changed class name to follow CaseConvention Changed to test to check Date string from last row in DF. Test rolling over a 5min timeframe, with print inside the it block watched it be processed firt loop after the new candle then not after. --- 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 522e205e7..10a7c5f6b 100644 --- a/freqtrade/strategy/interface.py +++ b/freqtrade/strategy/interface.py @@ -21,7 +21,7 @@ logger = logging.getLogger(__name__) class CandleAnalyzed: ''' - Maintains candle_row, the last df ['date'], set by analyze_ticker + Maintains candle_row, the last df ['date'], set by analyze_ticker. This allows analyze_ticker to test if analysed the candle row in dataframe prior. To not keep testing the same candle data, which is wasteful in CPU and time '''