Fix comment location
This commit is contained in:
parent
d35d3bb38c
commit
2ec5a536aa
@ -119,11 +119,12 @@ class IStrategy(ABC):
|
|||||||
add several TA indicators and buy signal to it
|
add several TA indicators and buy signal to it
|
||||||
:return DataFrame with ticker data and indicator data
|
:return DataFrame with ticker data and indicator data
|
||||||
"""
|
"""
|
||||||
# Test if seen this pair and last candle before.
|
|
||||||
dataframe = parse_ticker_dataframe(ticker_history)
|
dataframe = parse_ticker_dataframe(ticker_history)
|
||||||
|
|
||||||
pair = str(metadata.get('pair'))
|
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 true
|
||||||
if (not self.process_only_new_candles or
|
if (not self.process_only_new_candles or
|
||||||
self._last_candle_seen_per_pair.get(pair, None) != dataframe.iloc[-1]['date']):
|
self._last_candle_seen_per_pair.get(pair, None) != dataframe.iloc[-1]['date']):
|
||||||
|
Loading…
Reference in New Issue
Block a user