2017-11-24 22:58:35 +00:00
|
|
|
# pragma pylint: disable=missing-docstring,W0212
|
|
|
|
|
2017-12-28 14:58:02 +00:00
|
|
|
import math
|
2017-12-26 06:05:49 +00:00
|
|
|
import pandas as pd
|
2017-12-30 10:55:23 +00:00
|
|
|
# from unittest.mock import MagicMock
|
2017-11-25 00:04:11 +00:00
|
|
|
from freqtrade import exchange, optimize
|
2017-11-24 22:58:35 +00:00
|
|
|
from freqtrade.exchange import Bittrex
|
2018-01-02 19:32:11 +00:00
|
|
|
from freqtrade.optimize import preprocess
|
2017-12-26 06:05:49 +00:00
|
|
|
from freqtrade.optimize.backtesting import backtest, generate_text_table, get_timeframe
|
2017-12-30 10:55:23 +00:00
|
|
|
# import freqtrade.optimize.backtesting as backtesting
|
2017-11-24 22:58:35 +00:00
|
|
|
|
2017-12-16 02:39:47 +00:00
|
|
|
|
2017-12-26 06:05:49 +00:00
|
|
|
def test_generate_text_table():
|
|
|
|
results = pd.DataFrame(
|
|
|
|
{
|
|
|
|
'currency': ['BTC_ETH', 'BTC_ETH'],
|
|
|
|
'profit_percent': [0.1, 0.2],
|
|
|
|
'profit_BTC': [0.2, 0.4],
|
2018-01-03 10:30:24 +00:00
|
|
|
'duration': [10, 30],
|
|
|
|
'profit': [2,0],
|
|
|
|
'loss': [0,0]
|
2017-12-26 06:05:49 +00:00
|
|
|
}
|
|
|
|
)
|
2018-01-02 14:40:33 +00:00
|
|
|
print(generate_text_table({'BTC_ETH': {}}, results, 'BTC', 5))
|
2017-12-26 06:05:49 +00:00
|
|
|
assert generate_text_table({'BTC_ETH': {}}, results, 'BTC', 5) == (
|
2018-01-03 10:30:24 +00:00
|
|
|
'pair buy count avg profit % total profit BTC avg duration profit loss\n'
|
|
|
|
'------- ----------- -------------- ------------------ -------------- -------- ------\n'
|
|
|
|
'BTC_ETH 2 15.00 0.60000000 100.0 2 0\n'
|
|
|
|
'TOTAL 2 15.00 0.60000000 100.0 2 0')
|
2017-12-26 06:05:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_get_timeframe():
|
2018-01-02 19:32:11 +00:00
|
|
|
data = preprocess(optimize.load_data(ticker_interval=1, pairs=['BTC_UNITEST']))
|
2017-12-26 06:05:49 +00:00
|
|
|
min_date, max_date = get_timeframe(data)
|
|
|
|
assert min_date.isoformat() == '2017-11-04T23:02:00+00:00'
|
|
|
|
assert max_date.isoformat() == '2017-11-14T22:59:00+00:00'
|
|
|
|
|
|
|
|
|
2017-11-25 00:04:11 +00:00
|
|
|
def test_backtest(default_conf, mocker):
|
|
|
|
mocker.patch.dict('freqtrade.main._CONF', default_conf)
|
2017-11-24 22:58:35 +00:00
|
|
|
exchange._API = Bittrex({'key': '', 'secret': ''})
|
|
|
|
|
2017-11-25 00:04:11 +00:00
|
|
|
data = optimize.load_data(ticker_interval=5, pairs=['BTC_ETH'])
|
2017-12-23 15:26:22 +00:00
|
|
|
results = backtest(default_conf['stake_amount'], optimize.preprocess(data), 10, True)
|
2017-12-25 11:07:50 +00:00
|
|
|
assert not results.empty
|
2017-12-11 21:11:06 +00:00
|
|
|
|
|
|
|
|
2017-12-28 08:11:52 +00:00
|
|
|
def test_backtest_1min_ticker_interval(default_conf, mocker):
|
2017-12-11 21:11:06 +00:00
|
|
|
mocker.patch.dict('freqtrade.main._CONF', default_conf)
|
|
|
|
exchange._API = Bittrex({'key': '', 'secret': ''})
|
|
|
|
|
|
|
|
# Run a backtesting for an exiting 5min ticker_interval
|
|
|
|
data = optimize.load_data(ticker_interval=1, pairs=['BTC_UNITEST'])
|
2017-12-23 15:26:22 +00:00
|
|
|
results = backtest(default_conf['stake_amount'], optimize.preprocess(data), 1, True)
|
2017-12-25 11:07:50 +00:00
|
|
|
assert not results.empty
|
2017-12-11 21:11:06 +00:00
|
|
|
|
2017-12-18 16:36:00 +00:00
|
|
|
|
2017-12-30 10:55:23 +00:00
|
|
|
def trim_dictlist(dl, num):
|
|
|
|
new = {}
|
|
|
|
for pair, pair_data in dl.items():
|
|
|
|
# Can't figure out why -num wont work
|
|
|
|
new[pair] = pair_data[num:]
|
2017-12-28 14:58:02 +00:00
|
|
|
return new
|
|
|
|
|
2017-12-28 19:05:33 +00:00
|
|
|
|
2017-12-28 14:58:02 +00:00
|
|
|
def load_data_test(what):
|
|
|
|
data = optimize.load_data(ticker_interval=1, pairs=['BTC_UNITEST'])
|
2017-12-30 10:55:23 +00:00
|
|
|
data = trim_dictlist(data, -100)
|
2017-12-28 14:58:02 +00:00
|
|
|
pair = data['BTC_UNITEST']
|
2017-12-30 10:55:23 +00:00
|
|
|
datalen = len(pair)
|
2017-12-28 14:58:02 +00:00
|
|
|
# Depending on the what parameter we now adjust the
|
2017-12-30 10:55:23 +00:00
|
|
|
# loaded data looks:
|
2017-12-28 19:05:33 +00:00
|
|
|
# pair :: [{'O': 0.123, 'H': 0.123, 'L': 0.123,
|
|
|
|
# 'C': 0.123, 'V': 123.123,
|
|
|
|
# 'T': '2017-11-04T23:02:00', 'BV': 0.123}]
|
2017-12-30 10:55:23 +00:00
|
|
|
base = 0.001
|
2017-12-28 14:58:02 +00:00
|
|
|
if what == 'raise':
|
2017-12-30 10:55:23 +00:00
|
|
|
return {'BTC_UNITEST':
|
|
|
|
[{'T': pair[x]['T'], # Keep old dates
|
|
|
|
'V': pair[x]['V'], # Keep old volume
|
|
|
|
'BV': pair[x]['BV'], # keep too
|
|
|
|
'O': x * base, # But replace O,H,L,C
|
|
|
|
'H': x * base + 0.0001,
|
|
|
|
'L': x * base - 0.0001,
|
|
|
|
'C': x * base} for x in range(0, datalen)]}
|
2017-12-28 14:58:02 +00:00
|
|
|
if what == 'lower':
|
2017-12-30 10:55:23 +00:00
|
|
|
return {'BTC_UNITEST':
|
|
|
|
[{'T': pair[x]['T'], # Keep old dates
|
|
|
|
'V': pair[x]['V'], # Keep old volume
|
|
|
|
'BV': pair[x]['BV'], # keep too
|
|
|
|
'O': 1 - x * base, # But replace O,H,L,C
|
|
|
|
'H': 1 - x * base + 0.0001,
|
|
|
|
'L': 1 - x * base - 0.0001,
|
|
|
|
'C': 1 - x * base} for x in range(0, datalen)]}
|
2017-12-28 14:58:02 +00:00
|
|
|
if what == 'sine':
|
2017-12-30 10:55:23 +00:00
|
|
|
hz = 0.1 # frequency
|
|
|
|
return {'BTC_UNITEST':
|
|
|
|
[{'T': pair[x]['T'], # Keep old dates
|
|
|
|
'V': pair[x]['V'], # Keep old volume
|
|
|
|
'BV': pair[x]['BV'], # keep too
|
|
|
|
'O': math.sin(x*hz) / 1000 + base, # But replace O,H,L,C
|
|
|
|
'H': math.sin(x*hz) / 1000 + base + 0.0001,
|
|
|
|
'L': math.sin(x*hz) / 1000 + base - 0.0001,
|
|
|
|
'C': math.sin(x*hz) / 1000 + base} for x in range(0, datalen)]}
|
2017-12-28 14:58:02 +00:00
|
|
|
return data
|
|
|
|
|
2017-12-28 19:05:33 +00:00
|
|
|
|
2017-12-28 14:58:02 +00:00
|
|
|
def simple_backtest(config, contour, num_results):
|
|
|
|
data = load_data_test(contour)
|
|
|
|
processed = optimize.preprocess(data)
|
|
|
|
assert isinstance(processed, dict)
|
|
|
|
results = backtest(config['stake_amount'], processed, 1, True)
|
|
|
|
# results :: <class 'pandas.core.frame.DataFrame'>
|
|
|
|
assert len(results) == num_results
|
|
|
|
|
2017-12-30 10:55:23 +00:00
|
|
|
|
2017-12-28 14:58:02 +00:00
|
|
|
# Test backtest on offline data
|
|
|
|
# loaded by freqdata/optimize/__init__.py::load_data()
|
|
|
|
|
2017-12-28 19:05:33 +00:00
|
|
|
|
|
|
|
def test_backtest2(default_conf, mocker):
|
2017-12-28 14:58:02 +00:00
|
|
|
mocker.patch.dict('freqtrade.main._CONF', default_conf)
|
|
|
|
data = optimize.load_data(ticker_interval=5, pairs=['BTC_ETH'])
|
|
|
|
results = backtest(default_conf['stake_amount'], optimize.preprocess(data), 10, True)
|
2017-12-30 10:55:23 +00:00
|
|
|
assert not results.empty
|
2017-12-28 14:58:02 +00:00
|
|
|
|
2017-12-28 19:05:33 +00:00
|
|
|
|
2017-12-28 14:58:02 +00:00
|
|
|
def test_processed(default_conf, mocker):
|
|
|
|
mocker.patch.dict('freqtrade.main._CONF', default_conf)
|
2017-12-30 10:55:23 +00:00
|
|
|
dict_of_tickerrows = load_data_test('raise')
|
|
|
|
dataframes = optimize.preprocess(dict_of_tickerrows)
|
|
|
|
dataframe = dataframes['BTC_UNITEST']
|
|
|
|
cols = dataframe.columns
|
|
|
|
# assert the dataframe got some of the indicator columns
|
|
|
|
for col in ['close', 'high', 'low', 'open', 'date',
|
|
|
|
'ema50', 'ao', 'macd', 'plus_dm']:
|
|
|
|
assert col in cols
|
2017-12-28 19:05:33 +00:00
|
|
|
|
2017-12-28 14:58:02 +00:00
|
|
|
|
2017-12-30 10:55:23 +00:00
|
|
|
def test_backtest_pricecontours(default_conf, mocker):
|
2017-12-28 14:58:02 +00:00
|
|
|
mocker.patch.dict('freqtrade.main._CONF', default_conf)
|
2017-12-30 10:55:23 +00:00
|
|
|
tests = [['raise', 17], ['lower', 0], ['sine', 17]]
|
2017-12-28 14:58:02 +00:00
|
|
|
for [contour, numres] in tests:
|
|
|
|
simple_backtest(default_conf, contour, numres)
|
2017-12-30 10:55:23 +00:00
|
|
|
|
|
|
|
# Please make this work, the load_config needs to be mocked
|
|
|
|
# and cleanups.
|
|
|
|
# def test_backtest_start(default_conf, mocker):
|
|
|
|
# default_conf['exchange']['pair_whitelist'] = ['BTC_UNITEST']
|
|
|
|
# mocker.patch.dict('freqtrade.main._CONF', default_conf)
|
|
|
|
# # see https://pypi.python.org/pypi/pytest-mock/
|
|
|
|
# # and http://www.voidspace.org.uk/python/mock/patch.html
|
|
|
|
# # No usage example of simple function mocking,
|
|
|
|
# # and no documentation of side_effect
|
|
|
|
# mocker.patch('freqtrade.misc.load_config', new=lambda s, t: {})
|
|
|
|
# args = MagicMock()
|
|
|
|
# args.level = 10
|
|
|
|
# #load_config('foo')
|
|
|
|
# backtesting.start(args)
|
|
|
|
#
|
|
|
|
# Check what sideeffect backtstesting has done.
|
|
|
|
# Probably need to capture standard-output and
|
|
|
|
# check for the generated report table.
|