forked from paulcpk/freqtrade-strategies-that-work
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RSIDirectionalWithTrendSlow.py
73 lines (55 loc) · 2.5 KB
/
RSIDirectionalWithTrendSlow.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
from freqtrade.strategy import IStrategy, merge_informative_pair
from pandas import DataFrame
import talib.abstract as ta
import freqtrade.vendor.qtpylib.indicators as qtpylib
from freqtrade.exchange import timeframe_to_minutes
import numpy # noqa
class RSIDirectionalWithTrendSlow(IStrategy):
"""
RSIDirectionalWithTrendSlow
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 DoubleEMACrossoverWithTrend --timeframe 1h --timerange=20180301-20200301
> freqtrade plot-dataframe -s DoubleEMACrossoverWithTrend --indicators1 ema600 --timeframe 1h --timerange=20180301-20200301
"""
# Optimal timeframe for the strategy
timeframe = '1h'
# Minimal ROI designed for the strategy.
# This attribute will be overridden if the config file contains "minimal_roi"
# timeframe_mins = timeframe_to_minutes(timeframe)
# minimal_roi = {
# "0": 0.08, # 5% for the first 3 candles
# str(timeframe_mins * 12): 0.04, # 2% after 3 candles
# str(timeframe_mins * 24): 0.02, # 1% After 6 candles
# }
# This attribute will be overridden if the config file contains "stoploss"
stoploss = -0.2
# trailing stoploss
trailing_stop = True
def populate_indicators(self, dataframe: DataFrame, metadata: dict) -> DataFrame:
dataframe['rsi_slow'] = ta.RSI(dataframe, timeperiod=10)
dataframe['ema600'] = ta.EMA(dataframe, timeperiod=600)
return dataframe
def populate_buy_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame:
dataframe.loc[
(
# RSI crosses above 25
(qtpylib.crossed_above(dataframe['rsi_slow'], 25)) &
(dataframe['low'] > dataframe['ema600']) & # Candle low is above EMA
# Ensure this candle had volume (important for backtesting)
(dataframe['volume'] > 0)
),
'buy'] = 1
return dataframe
def populate_sell_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame:
dataframe.loc[
(
# RSI crosses above 20
(qtpylib.crossed_below(dataframe['rsi_slow'], 20)) |
# OR price is below trend ema
(dataframe['low'] < dataframe['ema600'])
),
'sell'] = 1
return dataframe