Change default value of process_only_new_candles to True since False is an uncommon usecase for expert strategy devs

This commit is contained in:
robcaulk
2022-05-23 10:24:58 +02:00
parent 063fc5174d
commit 5c4014ee62
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