2017-10-19 14:12:49 +00:00
|
|
|
# pragma pylint: disable=missing-docstring
|
|
|
|
import logging
|
|
|
|
import os
|
|
|
|
from functools import reduce
|
2017-10-28 12:22:15 +00:00
|
|
|
from math import exp
|
2017-10-30 19:41:36 +00:00
|
|
|
from operator import itemgetter
|
2017-10-19 14:12:49 +00:00
|
|
|
|
2017-10-30 19:41:36 +00:00
|
|
|
import pytest
|
2017-10-28 12:22:15 +00:00
|
|
|
from hyperopt import fmin, tpe, hp, Trials, STATUS_OK
|
2017-10-30 19:41:36 +00:00
|
|
|
from pandas import DataFrame
|
2017-10-19 14:12:49 +00:00
|
|
|
|
2017-10-26 14:24:28 +00:00
|
|
|
from freqtrade.tests.test_backtesting import backtest, format_results
|
2017-10-30 19:41:36 +00:00
|
|
|
from freqtrade.vendor.qtpylib.indicators import crossed_above
|
2017-10-19 14:12:49 +00:00
|
|
|
|
2017-10-31 23:26:32 +00:00
|
|
|
logging.disable(logging.DEBUG) # disable debug logs that slow backtesting a lot
|
2017-10-19 14:12:49 +00:00
|
|
|
|
2017-10-28 12:22:15 +00:00
|
|
|
# set TARGET_TRADES to suit your number concurrent trades so its realistic to 20days of data
|
2017-11-12 06:30:58 +00:00
|
|
|
TARGET_TRADES = 1300
|
2017-10-28 12:22:15 +00:00
|
|
|
|
|
|
|
|
2017-10-19 14:12:49 +00:00
|
|
|
def buy_strategy_generator(params):
|
|
|
|
print(params)
|
2017-10-30 23:36:35 +00:00
|
|
|
|
2017-10-19 14:12:49 +00:00
|
|
|
def populate_buy_trend(dataframe: DataFrame) -> DataFrame:
|
|
|
|
conditions = []
|
2017-10-21 07:26:38 +00:00
|
|
|
# GUARDS AND TRENDS
|
2017-10-28 13:52:26 +00:00
|
|
|
if params['uptrend_long_ema']['enabled']:
|
|
|
|
conditions.append(dataframe['ema50'] > dataframe['ema100'])
|
2017-10-19 14:12:49 +00:00
|
|
|
if params['mfi']['enabled']:
|
|
|
|
conditions.append(dataframe['mfi'] < params['mfi']['value'])
|
|
|
|
if params['fastd']['enabled']:
|
|
|
|
conditions.append(dataframe['fastd'] < params['fastd']['value'])
|
|
|
|
if params['adx']['enabled']:
|
|
|
|
conditions.append(dataframe['adx'] > params['adx']['value'])
|
2017-10-28 13:21:07 +00:00
|
|
|
if params['rsi']['enabled']:
|
|
|
|
conditions.append(dataframe['rsi'] < params['rsi']['value'])
|
2017-10-20 09:56:44 +00:00
|
|
|
if params['over_sar']['enabled']:
|
|
|
|
conditions.append(dataframe['close'] > dataframe['sar'])
|
2017-11-11 07:35:04 +00:00
|
|
|
if params['green_candle']['enabled']:
|
|
|
|
conditions.append(dataframe['close'] > dataframe['open'])
|
2017-10-20 15:29:38 +00:00
|
|
|
if params['uptrend_sma']['enabled']:
|
|
|
|
prevsma = dataframe['sma'].shift(1)
|
|
|
|
conditions.append(dataframe['sma'] > prevsma)
|
2017-10-21 07:26:38 +00:00
|
|
|
|
|
|
|
# TRIGGERS
|
|
|
|
triggers = {
|
|
|
|
'lower_bb': dataframe['tema'] <= dataframe['blower'],
|
2017-11-11 07:26:05 +00:00
|
|
|
'faststoch10': (crossed_above(dataframe['fastd'], 10.0)),
|
2017-10-25 15:24:20 +00:00
|
|
|
'ao_cross_zero': (crossed_above(dataframe['ao'], 0.0)),
|
2017-10-28 13:40:21 +00:00
|
|
|
'ema5_cross_ema10': (crossed_above(dataframe['ema5'], dataframe['ema10'])),
|
2017-10-28 13:52:49 +00:00
|
|
|
'macd_cross_signal': (crossed_above(dataframe['macd'], dataframe['macdsignal'])),
|
2017-11-11 06:32:35 +00:00
|
|
|
'sar_reversal': (crossed_above(dataframe['close'], dataframe['sar'])),
|
2017-11-12 06:38:52 +00:00
|
|
|
'stochf_cross': (crossed_above(dataframe['fastk'], dataframe['fastd'])),
|
2017-10-21 07:26:38 +00:00
|
|
|
}
|
|
|
|
conditions.append(triggers.get(params['trigger']['type']))
|
|
|
|
|
2017-10-19 14:12:49 +00:00
|
|
|
dataframe.loc[
|
|
|
|
reduce(lambda x, y: x & y, conditions),
|
|
|
|
'buy'] = 1
|
|
|
|
dataframe.loc[dataframe['buy'] == 1, 'buy_price'] = dataframe['close']
|
|
|
|
|
|
|
|
return dataframe
|
|
|
|
return populate_buy_trend
|
|
|
|
|
2017-10-30 23:36:35 +00:00
|
|
|
|
2017-10-19 14:12:49 +00:00
|
|
|
@pytest.mark.skipif(not os.environ.get('BACKTEST', False), reason="BACKTEST not set")
|
2017-11-07 19:12:56 +00:00
|
|
|
def test_hyperopt(backtest_conf, backdata, mocker):
|
2017-10-30 20:31:28 +00:00
|
|
|
mocked_buy_trend = mocker.patch('freqtrade.analyze.populate_buy_trend')
|
2017-10-30 23:36:35 +00:00
|
|
|
|
2017-10-19 14:12:49 +00:00
|
|
|
def optimizer(params):
|
2017-10-30 20:31:28 +00:00
|
|
|
mocked_buy_trend.side_effect = buy_strategy_generator(params)
|
|
|
|
|
2017-11-07 19:12:56 +00:00
|
|
|
results = backtest(backtest_conf, backdata, mocker)
|
2017-10-24 04:58:42 +00:00
|
|
|
|
2017-10-26 14:24:28 +00:00
|
|
|
result = format_results(results)
|
|
|
|
print(result)
|
2017-10-28 12:22:15 +00:00
|
|
|
|
|
|
|
total_profit = results.profit.sum() * 1000
|
|
|
|
trade_count = len(results.index)
|
2017-10-28 12:24:05 +00:00
|
|
|
|
2017-11-12 06:30:58 +00:00
|
|
|
trade_loss = 1 - 0.4 * exp(-(trade_count - TARGET_TRADES) ** 2 / 10 ** 5.2)
|
|
|
|
profit_loss = max(0, 1 - total_profit / 15000) # max profit 15000
|
2017-10-28 12:22:15 +00:00
|
|
|
|
|
|
|
return {
|
|
|
|
'loss': trade_loss + profit_loss,
|
|
|
|
'status': STATUS_OK,
|
|
|
|
'result': result
|
|
|
|
}
|
2017-10-19 14:12:49 +00:00
|
|
|
|
|
|
|
space = {
|
|
|
|
'mfi': hp.choice('mfi', [
|
|
|
|
{'enabled': False},
|
2017-11-11 09:50:10 +00:00
|
|
|
{'enabled': True, 'value': hp.quniform('mfi-value', 5, 15, 1)}
|
2017-10-19 14:12:49 +00:00
|
|
|
]),
|
|
|
|
'fastd': hp.choice('fastd', [
|
|
|
|
{'enabled': False},
|
2017-11-11 09:50:10 +00:00
|
|
|
{'enabled': True, 'value': hp.quniform('fastd-value', 5, 40, 1)}
|
2017-10-19 14:12:49 +00:00
|
|
|
]),
|
|
|
|
'adx': hp.choice('adx', [
|
|
|
|
{'enabled': False},
|
2017-11-11 09:50:10 +00:00
|
|
|
{'enabled': True, 'value': hp.quniform('adx-value', 10, 50, 1)}
|
2017-10-20 10:14:28 +00:00
|
|
|
]),
|
2017-10-28 13:21:07 +00:00
|
|
|
'rsi': hp.choice('rsi', [
|
|
|
|
{'enabled': False},
|
2017-11-11 09:50:10 +00:00
|
|
|
{'enabled': True, 'value': hp.quniform('rsi-value', 20, 30, 1)}
|
2017-10-28 13:21:07 +00:00
|
|
|
]),
|
2017-10-28 13:52:26 +00:00
|
|
|
'uptrend_long_ema': hp.choice('uptrend_long_ema', [
|
|
|
|
{'enabled': False},
|
|
|
|
{'enabled': True}
|
|
|
|
]),
|
2017-10-20 09:56:44 +00:00
|
|
|
'over_sar': hp.choice('over_sar', [
|
|
|
|
{'enabled': False},
|
|
|
|
{'enabled': True}
|
|
|
|
]),
|
2017-11-11 08:26:04 +00:00
|
|
|
'green_candle': hp.choice('green_candle', [
|
2017-11-11 07:35:04 +00:00
|
|
|
{'enabled': False},
|
|
|
|
{'enabled': True}
|
|
|
|
]),
|
2017-10-20 15:29:38 +00:00
|
|
|
'uptrend_sma': hp.choice('uptrend_sma', [
|
|
|
|
{'enabled': False},
|
|
|
|
{'enabled': True}
|
|
|
|
]),
|
2017-10-21 07:26:38 +00:00
|
|
|
'trigger': hp.choice('trigger', [
|
|
|
|
{'type': 'lower_bb'},
|
2017-10-25 15:24:20 +00:00
|
|
|
{'type': 'faststoch10'},
|
2017-10-28 13:40:21 +00:00
|
|
|
{'type': 'ao_cross_zero'},
|
|
|
|
{'type': 'ema5_cross_ema10'},
|
2017-10-28 13:52:49 +00:00
|
|
|
{'type': 'macd_cross_signal'},
|
2017-11-11 06:32:35 +00:00
|
|
|
{'type': 'sar_reversal'},
|
2017-11-12 06:38:52 +00:00
|
|
|
{'type': 'stochf_cross'},
|
2017-10-21 07:26:38 +00:00
|
|
|
]),
|
2017-10-19 14:12:49 +00:00
|
|
|
}
|
2017-10-28 12:22:15 +00:00
|
|
|
trials = Trials()
|
2017-11-05 07:28:42 +00:00
|
|
|
best = fmin(fn=optimizer, space=space, algo=tpe.suggest, max_evals=4, trials=trials)
|
2017-11-07 17:24:51 +00:00
|
|
|
print('\n\n\n\n==================== HYPEROPT BACKTESTING REPORT ==============================')
|
2017-10-28 12:22:15 +00:00
|
|
|
print('Best parameters {}'.format(best))
|
|
|
|
newlist = sorted(trials.results, key=itemgetter('loss'))
|
|
|
|
print('Result: {}'.format(newlist[0]['result']))
|