2017-09-24 14:23:29 +00:00
|
|
|
# pragma pylint: disable=missing-docstring
|
2017-11-15 18:06:37 +00:00
|
|
|
from typing import Dict
|
2017-09-28 14:00:14 +00:00
|
|
|
import logging
|
2017-09-28 21:26:28 +00:00
|
|
|
import os
|
|
|
|
|
2017-10-01 08:02:47 +00:00
|
|
|
import pytest
|
2017-09-24 14:23:29 +00:00
|
|
|
import arrow
|
2017-09-25 18:06:15 +00:00
|
|
|
from pandas import DataFrame
|
2017-09-28 21:26:28 +00:00
|
|
|
|
2017-11-04 17:43:23 +00:00
|
|
|
from freqtrade import exchange
|
2017-11-15 18:06:37 +00:00
|
|
|
from freqtrade.analyze import parse_ticker_dataframe, populate_indicators, \
|
|
|
|
populate_buy_trend, populate_sell_trend
|
2017-11-04 17:43:23 +00:00
|
|
|
from freqtrade.exchange import Bittrex
|
2017-11-16 05:49:06 +00:00
|
|
|
from freqtrade.main import min_roi_reached
|
2017-09-28 21:26:28 +00:00
|
|
|
from freqtrade.persistence import Trade
|
|
|
|
|
2017-10-31 23:26:32 +00:00
|
|
|
logging.disable(logging.DEBUG) # disable debug logs that slow backtesting a lot
|
2017-09-25 18:06:15 +00:00
|
|
|
|
2017-10-30 23:36:35 +00:00
|
|
|
|
2017-10-26 14:24:28 +00:00
|
|
|
def format_results(results):
|
|
|
|
return 'Made {} buys. Average profit {:.2f}%. Total profit was {:.3f}. Average duration {:.1f} mins.'.format(
|
2017-11-06 17:01:13 +00:00
|
|
|
len(results.index), results.profit.mean() * 100.0, results.profit.sum(), results.duration.mean() * 5)
|
2017-09-24 14:23:29 +00:00
|
|
|
|
2017-10-30 23:36:35 +00:00
|
|
|
|
2017-10-24 04:58:42 +00:00
|
|
|
def print_pair_results(pair, results):
|
|
|
|
print('For currency {}:'.format(pair))
|
2017-10-26 14:24:28 +00:00
|
|
|
print(format_results(results[results.currency == pair]))
|
2017-10-24 04:58:42 +00:00
|
|
|
|
2017-10-30 23:36:35 +00:00
|
|
|
|
2017-11-15 18:06:37 +00:00
|
|
|
def preprocess(backdata) -> Dict[str, DataFrame]:
|
|
|
|
processed = {}
|
|
|
|
for pair, pair_data in backdata.items():
|
|
|
|
processed[pair] = populate_indicators(parse_ticker_dataframe(pair_data))
|
|
|
|
return processed
|
|
|
|
|
|
|
|
|
|
|
|
def backtest(backtest_conf, processed, mocker):
|
2017-10-01 08:02:47 +00:00
|
|
|
trades = []
|
2017-11-04 17:43:23 +00:00
|
|
|
exchange._API = Bittrex({'key': '', 'secret': ''})
|
2017-11-07 19:12:56 +00:00
|
|
|
mocker.patch.dict('freqtrade.main._CONF', backtest_conf)
|
2017-10-30 17:56:53 +00:00
|
|
|
mocker.patch('arrow.utcnow', return_value=arrow.get('2017-08-20T14:50:00'))
|
2017-11-15 18:06:37 +00:00
|
|
|
for pair, pair_data in processed.items():
|
|
|
|
ticker = populate_sell_trend(populate_buy_trend(pair_data))[['close', 'date', 'buy', 'sell']].copy()
|
|
|
|
|
2017-11-07 17:24:51 +00:00
|
|
|
# for each buy point
|
|
|
|
for row in ticker[ticker.buy == 1].itertuples(index=True):
|
|
|
|
trade = Trade(
|
|
|
|
open_rate=row.close,
|
|
|
|
open_date=row.date,
|
|
|
|
amount=1,
|
|
|
|
fee=exchange.get_fee() * 2
|
|
|
|
)
|
|
|
|
# calculate win/lose forwards from buy point
|
|
|
|
for row2 in ticker[row.Index:].itertuples(index=True):
|
2017-11-16 05:49:06 +00:00
|
|
|
if min_roi_reached(trade, row2.close, row2.date) or row2.sell == 1:
|
2017-11-07 17:24:51 +00:00
|
|
|
current_profit = trade.calc_profit(row2.close)
|
2017-09-25 18:06:15 +00:00
|
|
|
|
2017-11-07 17:24:51 +00:00
|
|
|
trades.append((pair, current_profit, row2.Index - row.Index))
|
|
|
|
break
|
2017-10-01 08:02:47 +00:00
|
|
|
labels = ['currency', 'profit', 'duration']
|
|
|
|
results = DataFrame.from_records(trades, columns=labels)
|
2017-10-24 04:58:42 +00:00
|
|
|
return results
|
2017-09-24 14:23:29 +00:00
|
|
|
|
2017-10-30 23:36:35 +00:00
|
|
|
|
2017-10-24 04:58:42 +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_backtest(backtest_conf, backdata, mocker, report=True):
|
2017-11-15 18:06:37 +00:00
|
|
|
results = backtest(backtest_conf, preprocess(backdata), mocker)
|
2017-09-24 14:23:29 +00:00
|
|
|
|
2017-10-24 04:58:42 +00:00
|
|
|
print('====================== BACKTESTING REPORT ================================')
|
2017-11-07 17:24:51 +00:00
|
|
|
for pair in backdata:
|
2017-11-04 17:55:41 +00:00
|
|
|
print_pair_results(pair, results)
|
2017-10-01 08:02:47 +00:00
|
|
|
print('TOTAL OVER ALL TRADES:')
|
2017-10-26 14:24:28 +00:00
|
|
|
print(format_results(results))
|