Merge pull request #6883 from freqtrade/makeProcessCandlesTrue

Change default value of process_only_new_candles to True since False …
This commit is contained in:
Matthias
2022-05-24 07:03:14 +02:00
committed by GitHub
5 changed files with 7 additions and 7 deletions

View File

@@ -82,7 +82,7 @@ class IStrategy(ABC, HyperStrategyMixin):
}
# run "populate_indicators" only for new candle
process_only_new_candles: bool = False
process_only_new_candles: bool = True
use_exit_signal: bool
exit_profit_only: bool