Skip to content

Commit

Permalink
#1 fix classname spelling in EMAPriceCrossoverWithThreshold
Browse files Browse the repository at this point in the history
  • Loading branch information
paulcpk committed Jun 14, 2021
1 parent 75c54a8 commit 1e154a2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions EMAPriceCrossoverWithThreshold.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
"""

Expand Down

0 comments on commit 1e154a2

Please sign in to comment.