From 5e74700e3191a873c732a3ebf5d82aae49e38c4b Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 6 Nov 2025 20:45:33 +0100 Subject: [PATCH] chore: don't use conflicting spaces in sample strategy --- freqtrade/templates/sample_strategy.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/freqtrade/templates/sample_strategy.py b/freqtrade/templates/sample_strategy.py index 75a0fe385..75a0fc9c2 100644 --- a/freqtrade/templates/sample_strategy.py +++ b/freqtrade/templates/sample_strategy.py @@ -96,7 +96,9 @@ class SampleStrategy(IStrategy): buy_rsi = IntParameter(low=1, high=50, default=30, space="buy", optimize=True, load=True) sell_rsi = IntParameter(low=50, high=100, default=70, space="sell", optimize=True, load=True) short_rsi = IntParameter(low=51, high=100, default=70, space="sell", optimize=True, load=True) - exit_short_rsi = IntParameter(low=1, high=50, default=30, space="buy", optimize=True, load=True) + exit_short_rsi = IntParameter( + low=1, high=50, default=30, space="exit", optimize=True, load=True + ) # Number of candles the strategy requires before producing valid signals startup_candle_count: int = 200