2018-11-07 18:46:04 +00:00
|
|
|
# pragma pylint: disable=missing-docstring, invalid-name, pointless-string-statement
|
|
|
|
|
2019-11-21 05:49:16 +00:00
|
|
|
# --- Do not remove these libs ---
|
2018-11-07 18:46:04 +00:00
|
|
|
from functools import reduce
|
2019-07-15 19:35:42 +00:00
|
|
|
from typing import Any, Callable, Dict, List
|
2018-11-07 18:46:04 +00:00
|
|
|
|
2019-11-02 10:11:13 +00:00
|
|
|
import numpy as np # noqa
|
2019-11-21 05:49:16 +00:00
|
|
|
import pandas as pd # noqa
|
2019-07-15 19:35:42 +00:00
|
|
|
from pandas import DataFrame
|
2019-11-02 10:11:13 +00:00
|
|
|
from skopt.space import Categorical, Dimension, Integer, Real # noqa
|
2018-11-07 18:46:04 +00:00
|
|
|
|
2018-11-20 16:40:45 +00:00
|
|
|
from freqtrade.optimize.hyperopt_interface import IHyperOpt
|
2018-11-07 18:46:04 +00:00
|
|
|
|
2019-11-21 05:49:16 +00:00
|
|
|
# --------------------------------
|
|
|
|
# Add your lib to import here
|
|
|
|
import talib.abstract as ta # noqa
|
|
|
|
import freqtrade.vendor.qtpylib.indicators as qtpylib
|
|
|
|
|
2018-11-07 18:46:04 +00:00
|
|
|
|
2019-11-13 08:38:06 +00:00
|
|
|
class SampleHyperOpt(IHyperOpt):
|
2018-11-07 18:46:04 +00:00
|
|
|
"""
|
2019-08-11 23:19:50 +00:00
|
|
|
This is a sample Hyperopt to inspire you.
|
2019-08-05 14:54:53 +00:00
|
|
|
|
2020-03-09 14:04:28 +00:00
|
|
|
More information in the documentation: https://www.freqtrade.io/en/latest/hyperopt/
|
2019-08-05 14:54:53 +00:00
|
|
|
|
2019-08-08 19:45:37 +00:00
|
|
|
You should:
|
|
|
|
- Rename the class name to some unique name.
|
2019-08-05 14:54:53 +00:00
|
|
|
- Add any methods you want to build your hyperopt.
|
|
|
|
- Add any lib you need to build your hyperopt.
|
|
|
|
|
2020-03-09 14:04:28 +00:00
|
|
|
An easier way to get a new hyperopt file is by using
|
|
|
|
`freqtrade new-hyperopt --hyperopt MyCoolHyperopt`.
|
|
|
|
|
2019-08-05 14:54:53 +00:00
|
|
|
You must keep:
|
|
|
|
- The prototypes for the methods: populate_indicators, indicator_space, buy_strategy_generator.
|
|
|
|
|
2020-03-09 14:04:28 +00:00
|
|
|
The methods roi_space, generate_roi_table and stoploss_space are not required
|
|
|
|
and are provided by default.
|
|
|
|
However, you may override them if you need 'roi' and 'stoploss' spaces that
|
|
|
|
differ from the defaults offered by Freqtrade.
|
|
|
|
Sample implementation of these methods will be copied to `user_data/hyperopts` when
|
|
|
|
creating the user-data directory using `freqtrade create-userdir --userdir user_data`,
|
|
|
|
or is available online under the following URL:
|
|
|
|
https://github.com/freqtrade/freqtrade/blob/develop/freqtrade/templates/sample_hyperopt_advanced.py.
|
2018-11-07 18:46:04 +00:00
|
|
|
"""
|
|
|
|
|
2018-11-20 18:41:07 +00:00
|
|
|
@staticmethod
|
|
|
|
def buy_strategy_generator(params: Dict[str, Any]) -> Callable:
|
2018-11-07 18:46:04 +00:00
|
|
|
"""
|
2019-08-11 23:19:50 +00:00
|
|
|
Define the buy strategy parameters to be used by Hyperopt.
|
2018-11-07 18:46:04 +00:00
|
|
|
"""
|
|
|
|
def populate_buy_trend(dataframe: DataFrame, metadata: dict) -> DataFrame:
|
|
|
|
"""
|
2019-08-11 23:19:50 +00:00
|
|
|
Buy strategy Hyperopt will build and use.
|
2018-11-07 18:46:04 +00:00
|
|
|
"""
|
|
|
|
conditions = []
|
2019-08-11 23:19:50 +00:00
|
|
|
|
2018-11-07 18:46:04 +00:00
|
|
|
# GUARDS AND TRENDS
|
|
|
|
if 'mfi-enabled' in params and params['mfi-enabled']:
|
|
|
|
conditions.append(dataframe['mfi'] < params['mfi-value'])
|
|
|
|
if 'fastd-enabled' in params and params['fastd-enabled']:
|
|
|
|
conditions.append(dataframe['fastd'] < params['fastd-value'])
|
|
|
|
if 'adx-enabled' in params and params['adx-enabled']:
|
|
|
|
conditions.append(dataframe['adx'] > params['adx-value'])
|
|
|
|
if 'rsi-enabled' in params and params['rsi-enabled']:
|
|
|
|
conditions.append(dataframe['rsi'] < params['rsi-value'])
|
|
|
|
|
|
|
|
# TRIGGERS
|
2019-01-06 09:30:58 +00:00
|
|
|
if 'trigger' in params:
|
|
|
|
if params['trigger'] == 'bb_lower':
|
|
|
|
conditions.append(dataframe['close'] < dataframe['bb_lowerband'])
|
|
|
|
if params['trigger'] == 'macd_cross_signal':
|
|
|
|
conditions.append(qtpylib.crossed_above(
|
|
|
|
dataframe['macd'], dataframe['macdsignal']
|
|
|
|
))
|
|
|
|
if params['trigger'] == 'sar_reversal':
|
|
|
|
conditions.append(qtpylib.crossed_above(
|
|
|
|
dataframe['close'], dataframe['sar']
|
|
|
|
))
|
2018-11-07 18:46:04 +00:00
|
|
|
|
2020-03-10 15:05:33 +00:00
|
|
|
# Check that volume is not 0
|
|
|
|
conditions.append(dataframe['volume'] > 0)
|
|
|
|
|
2019-05-24 20:08:56 +00:00
|
|
|
if conditions:
|
|
|
|
dataframe.loc[
|
|
|
|
reduce(lambda x, y: x & y, conditions),
|
|
|
|
'buy'] = 1
|
2018-11-07 18:46:04 +00:00
|
|
|
|
|
|
|
return dataframe
|
|
|
|
|
|
|
|
return populate_buy_trend
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def indicator_space() -> List[Dimension]:
|
|
|
|
"""
|
2019-08-11 23:19:50 +00:00
|
|
|
Define your Hyperopt space for searching buy strategy parameters.
|
2018-11-07 18:46:04 +00:00
|
|
|
"""
|
|
|
|
return [
|
|
|
|
Integer(10, 25, name='mfi-value'),
|
|
|
|
Integer(15, 45, name='fastd-value'),
|
|
|
|
Integer(20, 50, name='adx-value'),
|
|
|
|
Integer(20, 40, name='rsi-value'),
|
|
|
|
Categorical([True, False], name='mfi-enabled'),
|
|
|
|
Categorical([True, False], name='fastd-enabled'),
|
|
|
|
Categorical([True, False], name='adx-enabled'),
|
|
|
|
Categorical([True, False], name='rsi-enabled'),
|
|
|
|
Categorical(['bb_lower', 'macd_cross_signal', 'sar_reversal'], name='trigger')
|
|
|
|
]
|
|
|
|
|
2019-01-06 09:16:30 +00:00
|
|
|
@staticmethod
|
|
|
|
def sell_strategy_generator(params: Dict[str, Any]) -> Callable:
|
|
|
|
"""
|
2019-08-11 23:19:50 +00:00
|
|
|
Define the sell strategy parameters to be used by Hyperopt.
|
2019-01-06 09:16:30 +00:00
|
|
|
"""
|
|
|
|
def populate_sell_trend(dataframe: DataFrame, metadata: dict) -> DataFrame:
|
|
|
|
"""
|
2019-08-11 23:19:50 +00:00
|
|
|
Sell strategy Hyperopt will build and use.
|
2019-01-06 09:16:30 +00:00
|
|
|
"""
|
|
|
|
conditions = []
|
2019-08-11 23:19:50 +00:00
|
|
|
|
2019-01-06 09:16:30 +00:00
|
|
|
# GUARDS AND TRENDS
|
|
|
|
if 'sell-mfi-enabled' in params and params['sell-mfi-enabled']:
|
|
|
|
conditions.append(dataframe['mfi'] > params['sell-mfi-value'])
|
|
|
|
if 'sell-fastd-enabled' in params and params['sell-fastd-enabled']:
|
|
|
|
conditions.append(dataframe['fastd'] > params['sell-fastd-value'])
|
|
|
|
if 'sell-adx-enabled' in params and params['sell-adx-enabled']:
|
2019-01-06 13:13:15 +00:00
|
|
|
conditions.append(dataframe['adx'] < params['sell-adx-value'])
|
2019-01-06 09:16:30 +00:00
|
|
|
if 'sell-rsi-enabled' in params and params['sell-rsi-enabled']:
|
|
|
|
conditions.append(dataframe['rsi'] > params['sell-rsi-value'])
|
|
|
|
|
|
|
|
# TRIGGERS
|
|
|
|
if 'sell-trigger' in params:
|
2019-01-06 13:13:15 +00:00
|
|
|
if params['sell-trigger'] == 'sell-bb_upper':
|
|
|
|
conditions.append(dataframe['close'] > dataframe['bb_upperband'])
|
2019-01-06 09:16:30 +00:00
|
|
|
if params['sell-trigger'] == 'sell-macd_cross_signal':
|
|
|
|
conditions.append(qtpylib.crossed_above(
|
2019-01-06 13:13:15 +00:00
|
|
|
dataframe['macdsignal'], dataframe['macd']
|
2019-01-06 09:16:30 +00:00
|
|
|
))
|
|
|
|
if params['sell-trigger'] == 'sell-sar_reversal':
|
|
|
|
conditions.append(qtpylib.crossed_above(
|
2019-01-06 13:13:15 +00:00
|
|
|
dataframe['sar'], dataframe['close']
|
2019-01-06 09:16:30 +00:00
|
|
|
))
|
|
|
|
|
2020-03-10 15:05:33 +00:00
|
|
|
# Check that volume is not 0
|
|
|
|
conditions.append(dataframe['volume'] > 0)
|
|
|
|
|
2019-05-24 20:08:56 +00:00
|
|
|
if conditions:
|
|
|
|
dataframe.loc[
|
|
|
|
reduce(lambda x, y: x & y, conditions),
|
|
|
|
'sell'] = 1
|
2019-01-06 09:16:30 +00:00
|
|
|
|
|
|
|
return dataframe
|
|
|
|
|
|
|
|
return populate_sell_trend
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def sell_indicator_space() -> List[Dimension]:
|
|
|
|
"""
|
2019-08-11 23:19:50 +00:00
|
|
|
Define your Hyperopt space for searching sell strategy parameters.
|
2019-01-06 09:16:30 +00:00
|
|
|
"""
|
|
|
|
return [
|
|
|
|
Integer(75, 100, name='sell-mfi-value'),
|
|
|
|
Integer(50, 100, name='sell-fastd-value'),
|
|
|
|
Integer(50, 100, name='sell-adx-value'),
|
|
|
|
Integer(60, 100, name='sell-rsi-value'),
|
|
|
|
Categorical([True, False], name='sell-mfi-enabled'),
|
|
|
|
Categorical([True, False], name='sell-fastd-enabled'),
|
|
|
|
Categorical([True, False], name='sell-adx-enabled'),
|
|
|
|
Categorical([True, False], name='sell-rsi-enabled'),
|
2019-01-06 13:13:15 +00:00
|
|
|
Categorical(['sell-bb_upper',
|
2019-01-06 09:16:30 +00:00
|
|
|
'sell-macd_cross_signal',
|
|
|
|
'sell-sar_reversal'], name='sell-trigger')
|
|
|
|
]
|
|
|
|
|
2019-01-06 13:13:15 +00:00
|
|
|
def populate_buy_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame:
|
|
|
|
"""
|
2019-08-11 23:19:50 +00:00
|
|
|
Based on TA indicators. Should be a copy of same method from strategy.
|
|
|
|
Must align to populate_indicators in this file.
|
|
|
|
Only used when --spaces does not include buy space.
|
2019-01-06 13:13:15 +00:00
|
|
|
"""
|
|
|
|
dataframe.loc[
|
|
|
|
(
|
|
|
|
(dataframe['close'] < dataframe['bb_lowerband']) &
|
|
|
|
(dataframe['mfi'] < 16) &
|
|
|
|
(dataframe['adx'] > 25) &
|
|
|
|
(dataframe['rsi'] < 21)
|
|
|
|
),
|
|
|
|
'buy'] = 1
|
|
|
|
|
|
|
|
return dataframe
|
|
|
|
|
|
|
|
def populate_sell_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame:
|
|
|
|
"""
|
2019-08-11 23:19:50 +00:00
|
|
|
Based on TA indicators. Should be a copy of same method from strategy.
|
|
|
|
Must align to populate_indicators in this file.
|
|
|
|
Only used when --spaces does not include sell space.
|
2019-01-06 13:13:15 +00:00
|
|
|
"""
|
|
|
|
dataframe.loc[
|
|
|
|
(
|
|
|
|
(qtpylib.crossed_above(
|
|
|
|
dataframe['macdsignal'], dataframe['macd']
|
|
|
|
)) &
|
|
|
|
(dataframe['fastd'] > 54)
|
|
|
|
),
|
|
|
|
'sell'] = 1
|
2019-08-11 23:19:50 +00:00
|
|
|
|
2019-01-06 13:13:15 +00:00
|
|
|
return dataframe
|