From 1e154a2f6b9aeecbaacb7db5ed6b866603daee2c Mon Sep 17 00:00:00 2001 From: Paul Csapak Date: Mon, 14 Jun 2021 20:26:21 +0400 Subject: [PATCH] #1 fix classname spelling in EMAPriceCrossoverWithThreshold --- EMAPriceCrossoverWithThreshold.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/EMAPriceCrossoverWithThreshold.py b/EMAPriceCrossoverWithThreshold.py index 3412fcb..f3e7d7d 100644 --- a/EMAPriceCrossoverWithThreshold.py +++ b/EMAPriceCrossoverWithThreshold.py @@ -5,18 +5,18 @@ import numpy # noqa -class EMAPriceCrossoverWithTreshold(IStrategy): +class EMAPriceCrossoverWithThreshold(IStrategy): """ - EMAPriceCrossoverWithTreshold + EMAPriceCrossoverWithThreshold author@: Paul Csapak github@: https://github.com/paulcpk/freqtrade-strategies-that-work How to use it? > freqtrade download-data --timeframes 1h --timerange=20180301-20200301 - > freqtrade backtesting --export trades -s EMAPriceCrossoverWithTreshold --timeframe 1h --timerange=20180301-20200301 - > freqtrade plot-dataframe -s EMAPriceCrossoverWithTreshold --indicators1 ema800 --timeframe 1h --timerange=20180301-20200301 + > freqtrade backtesting --export trades -s EMAPriceCrossoverWithThreshold --timeframe 1h --timerange=20180301-20200301 + > freqtrade plot-dataframe -s EMAPriceCrossoverWithThreshold --indicators1 ema800 --timeframe 1h --timerange=20180301-20200301 """