Timeframe
5m
Direction
Long Only
Stoploss
-99.0%
Trailing Stop
No
ROI
0m: 100.0%
Interface Version
3
Startup Candles
N/A
Indicators
2
freqtrade/freqtrade-strategies
Strategy 003 author@: Gerald Lonlas github@: https://github.com/freqtrade/freqtrade-strategies
import talib.abstract as ta
import pandas_ta as pta
from pandas import DataFrame
from technical import qtpylib
from freqtrade.strategy import IStrategy, IntParameter, DecimalParameter, RealParameter
class TestStrategy(IStrategy):
INTERFACE_VERSION = 3
timeframe = '5m'
can_short: bool = True
minimal_roi = {
"0": 1.0
# empty dict is allowed
}
stoploss = -0.99
trailing_stop = False
# Run `populate_indicators()` only for new candles.
process_only_new_candles = True
use_exit_signal = True # If false, the strategy will only exit by ROI or stoploss
exit_profit_only = False
ignore_roi_if_entry_signal = True
# If true, the bot will ignore ROI if the entry signal is still true
# Number of candles the strategy requires before producing valid signals
startup_candle_count: int = 30
# Strategy parameters
buy_rsi = IntParameter(10, 40, default=30, space='buy', optimize=True)
order_types = {
'buy': 'limit',
'sell': 'limit',
'stoploss': 'market',
'stoploss_on_exchange': False
}
order_time_in_force = {
'buy': 'GTC', # Good Till Cancelled
'sell': 'GTC'
}
@property
def plot_config(self):
return {
'main_plot': {
'rsi': {'color': 'blue'},
},
'subplots': {
"MACD": {
'macd': {'color': 'blue'},
'macdsignal': {'color': 'orange'},
'macdhist': {'color': 'green'},
},
}
}
def informative_pairs(self):
return []
def populate_indicators(self, dataframe: DataFrame, metadata: dict) -> DataFrame:
dataframe['rsi'] = ta.RSI(dataframe, timeperiod=14)
return dataframe
def populate_entry_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame:
return dataframe