Add test for ta_on_candle override

This commit is contained in:
Matthias
2018-08-09 20:12:45 +02:00
parent df960241bd
commit 3b2f161573
2 changed files with 19 additions and 3 deletions

View File

@@ -135,6 +135,7 @@ class IStrategy(ABC):
dataframe = self.advise_sell(dataframe, metadata)
self._candle_seen[pair] = dataframe.iloc[-1]['date']
else:
logging.debug("Skippinig TA Analysis for already analyzed candle")
dataframe['buy'] = 0
dataframe['sell'] = 0