├── .gitignore ├── DoubleEMACrossoverWithTrend.py ├── EMAPriceCrossoverWithThreshold.py ├── LICENSE ├── MACDCrossoverWithTrend.py ├── README.md ├── RSIDirectionalWithTrend.py └── RSIDirectionalWithTrendSlow.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ -------------------------------------------------------------------------------- /DoubleEMACrossoverWithTrend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulcpk/freqtrade-strategies-that-work/HEAD/DoubleEMACrossoverWithTrend.py -------------------------------------------------------------------------------- /EMAPriceCrossoverWithThreshold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulcpk/freqtrade-strategies-that-work/HEAD/EMAPriceCrossoverWithThreshold.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulcpk/freqtrade-strategies-that-work/HEAD/LICENSE -------------------------------------------------------------------------------- /MACDCrossoverWithTrend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulcpk/freqtrade-strategies-that-work/HEAD/MACDCrossoverWithTrend.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulcpk/freqtrade-strategies-that-work/HEAD/README.md -------------------------------------------------------------------------------- /RSIDirectionalWithTrend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulcpk/freqtrade-strategies-that-work/HEAD/RSIDirectionalWithTrend.py -------------------------------------------------------------------------------- /RSIDirectionalWithTrendSlow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulcpk/freqtrade-strategies-that-work/HEAD/RSIDirectionalWithTrendSlow.py --------------------------------------------------------------------------------