From d7ce9b9f6d2a53d99eea24738c115bbd56a8d5e3 Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 27 Sep 2021 19:17:19 +0200 Subject: [PATCH] Rename sample short strategy --- freqtrade/templates/sample_short_strategy.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/freqtrade/templates/sample_short_strategy.py b/freqtrade/templates/sample_short_strategy.py index bdd0054e8..e9deba6af 100644 --- a/freqtrade/templates/sample_short_strategy.py +++ b/freqtrade/templates/sample_short_strategy.py @@ -15,8 +15,9 @@ import talib.abstract as ta import freqtrade.vendor.qtpylib.indicators as qtpylib +# TODO-lev: Create a meaningfull short strategy (not just revresed signs). # This class is a sample. Feel free to customize it. -class SampleStrategy(IStrategy): +class SampleShortStrategy(IStrategy): """ This is a sample strategy to inspire you. More information in https://www.freqtrade.io/en/latest/strategy-customization/