# Source: generated via dynamic_strategy_generator from freqtrade.strategy import IStrategy from pandas import DataFrame import talib.abstract as ta import freqtrade.vendor.qtpylib.indicators as qtpylib class ACO_84_18(IStrategy): timeframe = '1h' # Standard ROI and Stoploss minimal_roi = {"0": 0.1, "60": 0.05, "120": 0.0} stoploss = -0.05 def populate_indicators(self, dataframe: DataFrame, metadata: dict) -> DataFrame: dataframe['adx'] = ta.ADX(dataframe, timeperiod=14) dataframe['dema'] = ta.DEMA(dataframe, timeperiod=10) macd = ta.MACD(dataframe, fastperiod=8, slowperiod=17, signalperiod=9) dataframe['macd'] = macd['macd'] dataframe['macdsignal'] = macd['macdsignal'] dataframe['macdhist'] = macd['macdhist'] dataframe['mfi'] = ta.MFI(dataframe, timeperiod=14) res = ta.AROON(dataframe, timeperiod=14) dataframe['aroondown'] = res.iloc[:, 0] dataframe['aroonup'] = res.iloc[:, 1] dataframe['wma'] = ta.WMA(dataframe, timeperiod=20) return dataframe def populate_entry_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame: dataframe.loc[ ( (dataframe['adx'] > 30) ) & ( qtpylib.crossed_above(dataframe['close'], dataframe['dema']) ), 'enter_long'] = 1 return dataframe def populate_exit_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame: dataframe.loc[ ( qtpylib.crossed_below(dataframe['macd'], dataframe['macdsignal']) ) & ( (dataframe['mfi'] > 80) ) & ( qtpylib.crossed_below(dataframe['aroonup'], dataframe['aroondown']) ) & ( qtpylib.crossed_below(dataframe['close'], dataframe['wma']) ), 'exit_long'] = 1 return dataframe