stable/freqtrade/tests/test_backtesting.py

83 lines
2.7 KiB
Python
Raw Normal View History

# pragma pylint: disable=missing-docstring
import json
import logging
2017-09-28 21:26:28 +00:00
import os
import pytest
import arrow
from pandas import DataFrame
2017-09-28 21:26:28 +00:00
from freqtrade.analyze import analyze_ticker
from freqtrade.main import should_sell
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-10-30 23:36:35 +00:00
def format_results(results):
return 'Made {} buys. Average profit {:.2f}%. Total profit was {:.3f}. Average duration {:.1f} mins.'.format(
len(results.index),
results.profit.mean() * 100.0,
results.profit.sum(),
2017-10-15 13:58:23 +00:00
results.duration.mean() * 5
)
2017-10-30 23:36:35 +00:00
def print_pair_results(pair, results):
print('For currency {}:'.format(pair))
print(format_results(results[results.currency == pair]))
2017-10-30 23:36:35 +00:00
@pytest.fixture
def pairs():
return ['btc-neo', 'btc-eth', 'btc-omg', 'btc-edg', 'btc-pay',
'btc-pivx', 'btc-qtum', 'btc-mtl', 'btc-etc', 'btc-ltc']
2017-10-30 23:36:35 +00:00
@pytest.fixture
def conf():
return {
"minimal_roi": {
2017-10-15 13:58:23 +00:00
"50": 0.0,
"40": 0.01,
2017-10-15 13:58:23 +00:00
"30": 0.02,
"0": 0.045
},
"stoploss": -0.40
}
2017-10-30 23:36:35 +00:00
def backtest(conf, pairs, mocker):
trades = []
mocked_history = mocker.patch('freqtrade.analyze.get_ticker_history')
mocker.patch.dict('freqtrade.main._CONF', conf)
mocker.patch('arrow.utcnow', return_value=arrow.get('2017-08-20T14:50:00'))
for pair in pairs:
2017-10-06 10:22:04 +00:00
with open('freqtrade/tests/testdata/'+pair+'.json') as data_file:
data = json.load(data_file)
mocked_history.return_value = data
ticker = analyze_ticker(pair)[['close', 'date', 'buy']].copy()
# 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)
# calculate win/lose forwards from buy point
for row2 in ticker[row.Index:].itertuples(index=True):
if should_sell(trade, row2.close, row2.date):
2017-10-31 23:26:32 +00:00
current_profit = trade.calc_profit(row2.close)
trades.append((pair, current_profit, row2.Index - row.Index))
break
labels = ['currency', 'profit', 'duration']
results = DataFrame.from_records(trades, columns=labels)
return results
2017-10-30 23:36:35 +00:00
@pytest.mark.skipif(not os.environ.get('BACKTEST', False), reason="BACKTEST not set")
def test_backtest(conf, pairs, mocker, report=True):
results = backtest(conf, pairs, mocker)
print('====================== BACKTESTING REPORT ================================')
[print_pair_results(pair, results) for pair in pairs]
print('TOTAL OVER ALL TRADES:')
print(format_results(results))