author@: Gert Wohlgemuth
Timeframe
1h
Direction
Long Only
Stoploss
-24.0%
Trailing Stop
Yes
ROI
0m: 18.5%, 27m: 7.1%, 53m: 1.5%, 154m: 0.0%
Interface Version
N/A
Startup Candles
N/A
Indicators
4
freqtrade/freqtrade-strategies
Strategy 003 author@: Gerald Lonlas github@: https://github.com/freqtrade/freqtrade-strategies
# --- Do not remove these libs ---
from freqtrade.strategy.interface import IStrategy
from pandas import DataFrame
import talib.abstract as ta
import freqtrade.vendor.qtpylib.indicators as qtpylib
# --------------------------------
class adxbbrsi1(IStrategy):
"""
author@: Gert Wohlgemuth
converted from:
https://github.com/sthewissen/Mynt/blob/master/src/Mynt.Core/Strategies/AdxMomentum.cs
"""
# Minimal ROI designed for the strategy.
# adjust based on market conditions. We would recommend to keep it low for quick turn arounds
# This attribute will be overridden if the config file contains "minimal_roi"
minimal_roi = {
"0": 0.18548,
"27": 0.07071,
"53": 0.01529,
"154": 0
}
# Optimal stoploss designed for the strategy
stoploss = -0.23985
# Optimal timeframe for the strategy
timeframe = '1h'
# Number of candles the strategy requires before producing valid signals
startup_candle_count: int = 20
##Trailing stop:
trailing_stop = True
trailing_stop_positive = 0.18802
trailing_stop_positive_offset = 0.26321
trailing_only_offset_is_reached = True
def populate_indicators(self, dataframe: DataFrame, metadata: dict) -> DataFrame:
dataframe['adx'] = ta.ADX(dataframe, timeperiod=14)
dataframe['rsi'] = ta.RSI(dataframe, timeperiod=14)
# Bollinger bands
bollinger = qtpylib.bollinger_bands(qtpylib.typical_price(dataframe), window=20, stds=2)
dataframe['bb_lowerband'] = bollinger['lower']
dataframe['bb_middleband'] = bollinger['mid']
dataframe['bb_upperband'] = bollinger['upper']
# dataframe['plus_di'] = ta.PLUS_DI(dataframe, timeperiod=25)
# dataframe['minus_di'] = ta.MINUS_DI(dataframe, timeperiod=25)
# dataframe['sar'] = ta.SAR(dataframe)
# dataframe['mom'] = ta.MOM(dataframe, timeperiod=14)
return dataframe
def populate_buy_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame:
dataframe.loc[
(
(dataframe['adx'] > 49) &
(dataframe['close'] < dataframe['bb_lowerband'])
# (dataframe['mom'] > 0) &
# (dataframe['minus_di'] > 25) &
# (dataframe['plus_di'] > dataframe['minus_di'])
),
'buy'] = 1
return dataframe
def populate_sell_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame:
dataframe.loc[
(
(dataframe['adx'] > 74) &
# (dataframe['mom'] < 0) &
# (dataframe['minus_di'] > 25) &
(dataframe['rsi']>94) &
(dataframe["close"] > dataframe['bb_upperband'])
# (dataframe['plus_di'] < dataframe['minus_di'])
),
'sell'] = 1
return dataframe