Set process candles to True

There's no reason for `process_only_new_candles` to be False in this strategy example as there's no ticker/websocket data being used, just candles.
This commit is contained in:
Robert Davey
2023-02-09 22:39:44 +00:00
committed by GitHub
parent ad2f69244f
commit 1fea9264fe
@@ -40,7 +40,7 @@ class FSampleStrategy(IStrategy):
# trailing_stop_positive_offset = 0.0 # Disabled / not configured
# Run "populate_indicators()" only for new candle.
process_only_new_candles = False
process_only_new_candles = True
# Number of candles the strategy requires before producing valid signals
startup_candle_count: int = 30