From 73114b93c2dc8a4637c54c956899301255028d02 Mon Sep 17 00:00:00 2001 From: paranoidandy Date: Tue, 3 Jan 2023 15:11:46 +0000 Subject: [PATCH] Update FreqaiExampleStrategy.py Change can_short to True to enable shorting --- freqtrade/templates/FreqaiExampleStrategy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/templates/FreqaiExampleStrategy.py b/freqtrade/templates/FreqaiExampleStrategy.py index 0c5d74ca8..0ec59c77f 100644 --- a/freqtrade/templates/FreqaiExampleStrategy.py +++ b/freqtrade/templates/FreqaiExampleStrategy.py @@ -39,7 +39,7 @@ class FreqaiExampleStrategy(IStrategy): use_exit_signal = True # this is the maximum period fed to talib (timeframe independent) startup_candle_count: int = 40 - can_short = False + can_short = True std_dev_multiplier_buy = CategoricalParameter( [0.75, 1, 1.25, 1.5, 1.75], default=1.25, space="buy", optimize=True)