stable/freqtrade/tests/data/test_converter.py

43 lines
1.7 KiB
Python
Raw Normal View History

2018-01-28 07:38:41 +00:00
# pragma pylint: disable=missing-docstring, C0103
2018-12-11 18:48:36 +00:00
import logging
2018-02-04 08:28:02 +00:00
2018-12-31 08:18:22 +00:00
from freqtrade.data.converter import parse_ticker_dataframe, ohlcv_fill_up_missing_data
from freqtrade.data.history import load_pair_history
from freqtrade.optimize import validate_backtest_data, get_timeframe
2018-12-11 18:48:36 +00:00
from freqtrade.tests.conftest import log_has
2018-02-04 08:28:02 +00:00
2017-11-07 19:12:56 +00:00
def test_dataframe_correct_columns(result):
2018-12-31 08:18:22 +00:00
assert result.columns.tolist() == ['date', 'open', 'high', 'low', 'close', 'volume']
2017-10-30 23:36:35 +00:00
def test_parse_ticker_dataframe(ticker_history_list, caplog):
2018-07-16 05:59:14 +00:00
columns = ['date', 'open', 'high', 'low', 'close', 'volume']
2018-12-11 18:48:36 +00:00
caplog.set_level(logging.DEBUG)
2018-07-16 05:59:14 +00:00
# Test file with BV data
dataframe = parse_ticker_dataframe(ticker_history_list, '5m', fill_missing=True)
2018-07-16 05:59:14 +00:00
assert dataframe.columns.tolist() == columns
2018-12-11 18:48:36 +00:00
assert log_has('Parsing tickerlist to dataframe', caplog.record_tuples)
2018-12-31 08:18:22 +00:00
def test_ohlcv_fill_up_missing_data(caplog):
data = load_pair_history(datadir=None,
ticker_interval='1m',
refresh_pairs=False,
pair='UNITTEST/BTC',
fill_up_missing=False)
2018-12-31 08:18:22 +00:00
caplog.set_level(logging.DEBUG)
data2 = ohlcv_fill_up_missing_data(data, '1m')
assert len(data2) > len(data)
# Column names should not change
assert (data.columns == data2.columns).all()
assert log_has(f"Missing data fillup: before: {len(data)} - after: {len(data2)}",
caplog.record_tuples)
# Test fillup actually fixes invalid backtest data
min_date, max_date = get_timeframe({'UNITTEST/BTC': data})
assert validate_backtest_data({'UNITTEST/BTC': data}, min_date, max_date, 1)
assert not validate_backtest_data({'UNITTEST/BTC': data2}, min_date, max_date, 1)