Adjust startup_candle_count of sample strategies

This commit is contained in:
Matthias 2020-11-14 08:25:57 +01:00
parent c09b641860
commit 164105acf2
2 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ class {{ strategy }}(IStrategy):
ignore_roi_if_buy_signal = False
# Number of candles the strategy requires before producing valid signals
startup_candle_count: int = 20
startup_candle_count: int = 30
# Optional order type mapping.
order_types = {

View File

@ -64,7 +64,7 @@ class SampleStrategy(IStrategy):
ignore_roi_if_buy_signal = False
# Number of candles the strategy requires before producing valid signals
startup_candle_count: int = 20
startup_candle_count: int = 30
# Optional order type mapping.
order_types = {