2018-12-13 05:35:42 +00:00
|
|
|
# pragma pylint: disable=missing-docstring, protected-access, C0103
|
|
|
|
|
|
|
|
import json
|
|
|
|
import uuid
|
2019-05-25 18:25:59 +00:00
|
|
|
from pathlib import Path
|
2018-12-13 05:35:42 +00:00
|
|
|
from shutil import copyfile
|
2019-08-25 13:02:40 +00:00
|
|
|
from unittest.mock import MagicMock, PropertyMock
|
2018-12-13 05:35:42 +00:00
|
|
|
|
|
|
|
import arrow
|
2019-12-27 12:16:53 +00:00
|
|
|
import pytest
|
2019-05-25 18:25:59 +00:00
|
|
|
from pandas import DataFrame
|
2019-12-27 09:11:49 +00:00
|
|
|
from pandas.testing import assert_frame_equal
|
2018-12-13 05:35:42 +00:00
|
|
|
|
2019-07-11 18:23:23 +00:00
|
|
|
from freqtrade.configuration import TimeRange
|
2022-09-23 05:09:34 +00:00
|
|
|
from freqtrade.constants import DATETIME_PRINT_FORMAT
|
2020-03-08 10:35:31 +00:00
|
|
|
from freqtrade.data.converter import ohlcv_to_dataframe
|
2020-09-28 17:43:15 +00:00
|
|
|
from freqtrade.data.history.history_utils import (_download_pair_history, _download_trades_history,
|
|
|
|
_load_cached_data_for_updating,
|
|
|
|
convert_trades_to_ohlcv, get_timerange, load_data,
|
|
|
|
load_pair_history, refresh_backtest_ohlcv_data,
|
|
|
|
refresh_backtest_trades_data, refresh_data,
|
|
|
|
validate_backtest_data)
|
2022-09-23 05:09:34 +00:00
|
|
|
from freqtrade.data.history.idatahandler import get_datahandler
|
2020-09-28 17:43:15 +00:00
|
|
|
from freqtrade.data.history.jsondatahandler import JsonDataHandler, JsonGzDataHandler
|
2022-09-23 05:09:34 +00:00
|
|
|
from freqtrade.enums import CandleType
|
2019-05-25 18:25:59 +00:00
|
|
|
from freqtrade.exchange import timeframe_to_minutes
|
2018-12-13 05:35:42 +00:00
|
|
|
from freqtrade.misc import file_dump_json
|
2020-02-11 22:39:15 +00:00
|
|
|
from freqtrade.resolvers import StrategyResolver
|
2023-02-25 19:26:04 +00:00
|
|
|
from tests.conftest import (CURRENT_TEST_STRATEGY, EXMS, get_patched_exchange, log_has, log_has_re,
|
2021-09-21 18:18:14 +00:00
|
|
|
patch_exchange)
|
2020-09-28 17:43:15 +00:00
|
|
|
|
2018-12-13 05:35:42 +00:00
|
|
|
|
2019-10-08 19:10:43 +00:00
|
|
|
def _clean_test_file(file: Path) -> None:
|
2018-12-13 05:35:42 +00:00
|
|
|
"""
|
|
|
|
Backup existing file to avoid deleting the user file
|
|
|
|
:param file: complete path to the file
|
|
|
|
:return: None
|
|
|
|
"""
|
2019-10-08 19:10:43 +00:00
|
|
|
file_swp = Path(str(file) + '.swp')
|
2018-12-13 05:35:42 +00:00
|
|
|
# 1. Delete file from the test
|
2019-10-08 19:10:43 +00:00
|
|
|
if file.is_file():
|
|
|
|
file.unlink()
|
2018-12-13 05:35:42 +00:00
|
|
|
|
|
|
|
# 2. Rollback to the initial file
|
2019-10-08 19:10:43 +00:00
|
|
|
if file_swp.is_file():
|
|
|
|
file_swp.rename(file)
|
2018-12-13 05:35:42 +00:00
|
|
|
|
|
|
|
|
2022-09-23 05:09:34 +00:00
|
|
|
def test_load_data_30min_timeframe(caplog, testdatadir) -> None:
|
2019-12-17 08:36:26 +00:00
|
|
|
ld = load_pair_history(pair='UNITTEST/BTC', timeframe='30m', datadir=testdatadir)
|
2018-12-15 19:31:25 +00:00
|
|
|
assert isinstance(ld, DataFrame)
|
2019-05-17 16:05:36 +00:00
|
|
|
assert not log_has(
|
2019-11-02 19:19:13 +00:00
|
|
|
'Download history data for pair: "UNITTEST/BTC", timeframe: 30m '
|
2019-08-11 18:16:34 +00:00
|
|
|
'and store in None.', caplog
|
2019-05-17 16:05:36 +00:00
|
|
|
)
|
2018-12-13 05:35:42 +00:00
|
|
|
|
|
|
|
|
2022-09-23 05:09:34 +00:00
|
|
|
def test_load_data_7min_timeframe(caplog, testdatadir) -> None:
|
2019-12-17 08:36:26 +00:00
|
|
|
ld = load_pair_history(pair='UNITTEST/BTC', timeframe='7m', datadir=testdatadir)
|
2019-12-04 05:57:44 +00:00
|
|
|
assert isinstance(ld, DataFrame)
|
|
|
|
assert ld.empty
|
2018-12-15 19:31:25 +00:00
|
|
|
assert log_has(
|
2022-01-22 10:50:46 +00:00
|
|
|
'No history for UNITTEST/BTC, spot, 7m found. '
|
2019-09-20 18:12:35 +00:00
|
|
|
'Use `freqtrade download-data` to download the data', caplog
|
2019-04-22 18:24:45 +00:00
|
|
|
)
|
2018-12-13 05:35:42 +00:00
|
|
|
|
|
|
|
|
2020-03-08 10:35:31 +00:00
|
|
|
def test_load_data_1min_timeframe(ohlcv_history, mocker, caplog, testdatadir) -> None:
|
2023-02-25 19:26:04 +00:00
|
|
|
mocker.patch(f'{EXMS}.get_historic_ohlcv', return_value=ohlcv_history)
|
2019-10-08 19:10:43 +00:00
|
|
|
file = testdatadir / 'UNITTEST_BTC-1m.json'
|
2019-12-17 08:36:26 +00:00
|
|
|
load_data(datadir=testdatadir, timeframe='1m', pairs=['UNITTEST/BTC'])
|
2019-10-08 19:10:43 +00:00
|
|
|
assert file.is_file()
|
2019-05-17 16:05:36 +00:00
|
|
|
assert not log_has(
|
|
|
|
'Download history data for pair: "UNITTEST/BTC", interval: 1m '
|
2019-08-11 18:16:34 +00:00
|
|
|
'and store in None.', caplog
|
2019-05-17 16:05:36 +00:00
|
|
|
)
|
2018-12-13 05:35:42 +00:00
|
|
|
|
|
|
|
|
2021-11-21 07:43:05 +00:00
|
|
|
def test_load_data_mark(ohlcv_history, mocker, caplog, testdatadir) -> None:
|
2023-02-25 19:26:04 +00:00
|
|
|
mocker.patch(f'{EXMS}.get_historic_ohlcv', return_value=ohlcv_history)
|
2023-01-13 20:16:19 +00:00
|
|
|
file = testdatadir / 'futures/UNITTEST_USDT_USDT-1h-mark.json'
|
2021-11-21 07:43:05 +00:00
|
|
|
load_data(datadir=testdatadir, timeframe='1h', pairs=['UNITTEST/BTC'], candle_type='mark')
|
|
|
|
assert file.is_file()
|
|
|
|
assert not log_has(
|
2023-01-13 20:16:19 +00:00
|
|
|
'Download history data for pair: "UNITTEST/USDT:USDT", interval: 1m '
|
2021-11-21 07:43:05 +00:00
|
|
|
'and store in None.', caplog
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2022-09-23 05:09:34 +00:00
|
|
|
def test_load_data_startup_candles(mocker, testdatadir) -> None:
|
2019-12-25 14:40:42 +00:00
|
|
|
ltfmock = mocker.patch(
|
2019-12-28 08:59:47 +00:00
|
|
|
'freqtrade.data.history.jsondatahandler.JsonDataHandler._ohlcv_load',
|
2019-12-25 14:40:42 +00:00
|
|
|
MagicMock(return_value=DataFrame()))
|
2019-10-27 09:00:44 +00:00
|
|
|
timerange = TimeRange('date', None, 1510639620, 0)
|
2019-12-17 08:36:26 +00:00
|
|
|
load_pair_history(pair='UNITTEST/BTC', timeframe='1m',
|
|
|
|
datadir=testdatadir, timerange=timerange,
|
|
|
|
startup_candles=20,)
|
2019-10-31 05:51:36 +00:00
|
|
|
|
2019-10-27 09:00:44 +00:00
|
|
|
assert ltfmock.call_count == 1
|
|
|
|
assert ltfmock.call_args_list[0][1]['timerange'] != timerange
|
|
|
|
# startts is 20 minutes earlier
|
|
|
|
assert ltfmock.call_args_list[0][1]['timerange'].startts == timerange.startts - 20 * 60
|
|
|
|
|
|
|
|
|
2021-11-21 07:43:05 +00:00
|
|
|
@pytest.mark.parametrize('candle_type', ['mark', ''])
|
2020-03-08 10:35:31 +00:00
|
|
|
def test_load_data_with_new_pair_1min(ohlcv_history_list, mocker, caplog,
|
2021-11-21 07:43:05 +00:00
|
|
|
default_conf, tmpdir, candle_type) -> None:
|
2018-12-13 05:35:42 +00:00
|
|
|
"""
|
2020-03-08 10:35:31 +00:00
|
|
|
Test load_pair_history() with 1 min timeframe
|
2018-12-13 05:35:42 +00:00
|
|
|
"""
|
2021-05-30 13:50:37 +00:00
|
|
|
tmpdir1 = Path(tmpdir)
|
2023-02-25 19:26:04 +00:00
|
|
|
mocker.patch(f'{EXMS}.get_historic_ohlcv', return_value=ohlcv_history_list)
|
2018-12-13 05:35:42 +00:00
|
|
|
exchange = get_patched_exchange(mocker, default_conf)
|
2021-05-30 13:50:37 +00:00
|
|
|
file = tmpdir1 / 'MEME_BTC-1m.json'
|
2018-12-13 05:35:42 +00:00
|
|
|
|
|
|
|
# do not download a new pair if refresh_pairs isn't set
|
2021-11-21 07:43:05 +00:00
|
|
|
load_pair_history(datadir=tmpdir1, timeframe='1m', pair='MEME/BTC', candle_type=candle_type)
|
2019-10-08 19:10:43 +00:00
|
|
|
assert not file.is_file()
|
2019-04-22 18:24:45 +00:00
|
|
|
assert log_has(
|
2022-01-22 10:50:46 +00:00
|
|
|
f"No history for MEME/BTC, {candle_type}, 1m found. "
|
|
|
|
"Use `freqtrade download-data` to download the data", caplog
|
2019-04-22 18:24:45 +00:00
|
|
|
)
|
2018-12-13 05:35:42 +00:00
|
|
|
|
|
|
|
# download a new pair if refresh_pairs is set
|
2021-05-30 13:50:37 +00:00
|
|
|
refresh_data(datadir=tmpdir1, timeframe='1m', pairs=['MEME/BTC'],
|
2022-03-22 06:13:38 +00:00
|
|
|
exchange=exchange, candle_type=CandleType.SPOT
|
|
|
|
)
|
2021-11-21 07:43:05 +00:00
|
|
|
load_pair_history(datadir=tmpdir1, timeframe='1m', pair='MEME/BTC', candle_type=candle_type)
|
2019-10-08 19:10:43 +00:00
|
|
|
assert file.is_file()
|
2019-09-07 18:56:03 +00:00
|
|
|
assert log_has_re(
|
2022-04-30 15:35:11 +00:00
|
|
|
r'\(0/1\) - Download history data for "MEME/BTC", 1m, '
|
|
|
|
r'spot and store in .*', caplog
|
2019-05-17 16:05:36 +00:00
|
|
|
)
|
2018-12-13 05:35:42 +00:00
|
|
|
|
|
|
|
|
2019-09-07 18:56:03 +00:00
|
|
|
def test_testdata_path(testdatadir) -> None:
|
2019-09-08 08:07:09 +00:00
|
|
|
assert str(Path('tests') / 'testdata') in str(testdatadir)
|
2018-12-13 05:35:42 +00:00
|
|
|
|
|
|
|
|
2022-05-01 17:51:25 +00:00
|
|
|
@pytest.mark.parametrize("pair,timeframe,expected_result,candle_type", [
|
|
|
|
("ETH/BTC", "5m", "freqtrade/hello/world/ETH_BTC-5m.json", ""),
|
|
|
|
("ETH/USDT", "1M", "freqtrade/hello/world/ETH_USDT-1Mo.json", ""),
|
|
|
|
("Fabric Token/ETH", "5m", "freqtrade/hello/world/Fabric_Token_ETH-5m.json", ""),
|
|
|
|
("ETHH20", "5m", "freqtrade/hello/world/ETHH20-5m.json", ""),
|
|
|
|
(".XBTBON2H", "5m", "freqtrade/hello/world/_XBTBON2H-5m.json", ""),
|
|
|
|
("ETHUSD.d", "5m", "freqtrade/hello/world/ETHUSD_d-5m.json", ""),
|
|
|
|
("ACC_OLD/BTC", "5m", "freqtrade/hello/world/ACC_OLD_BTC-5m.json", ""),
|
|
|
|
("ETH/BTC", "5m", "freqtrade/hello/world/futures/ETH_BTC-5m-mark.json", "mark"),
|
|
|
|
("ACC_OLD/BTC", "5m", "freqtrade/hello/world/futures/ACC_OLD_BTC-5m-index.json", "index"),
|
2020-01-05 09:36:08 +00:00
|
|
|
])
|
2022-05-01 17:51:25 +00:00
|
|
|
def test_json_pair_data_filename(pair, timeframe, expected_result, candle_type):
|
2021-11-19 09:32:37 +00:00
|
|
|
fn = JsonDataHandler._pair_data_filename(
|
|
|
|
Path('freqtrade/hello/world'),
|
|
|
|
pair,
|
2022-05-16 17:53:01 +00:00
|
|
|
timeframe,
|
2021-12-08 13:35:15 +00:00
|
|
|
CandleType.from_string(candle_type)
|
2021-11-19 09:32:37 +00:00
|
|
|
)
|
2019-08-14 16:56:46 +00:00
|
|
|
assert isinstance(fn, Path)
|
2020-01-05 09:36:08 +00:00
|
|
|
assert fn == Path(expected_result)
|
2021-11-19 09:32:37 +00:00
|
|
|
fn = JsonGzDataHandler._pair_data_filename(
|
|
|
|
Path('freqtrade/hello/world'),
|
|
|
|
pair,
|
2022-05-16 17:53:01 +00:00
|
|
|
timeframe,
|
2021-12-08 13:35:15 +00:00
|
|
|
candle_type=CandleType.from_string(candle_type)
|
2021-11-19 09:32:37 +00:00
|
|
|
)
|
2019-12-25 15:41:52 +00:00
|
|
|
assert isinstance(fn, Path)
|
2020-01-05 09:36:08 +00:00
|
|
|
assert fn == Path(expected_result + '.gz')
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("pair,expected_result", [
|
|
|
|
("ETH/BTC", 'freqtrade/hello/world/ETH_BTC-trades.json'),
|
|
|
|
("Fabric Token/ETH", 'freqtrade/hello/world/Fabric_Token_ETH-trades.json'),
|
|
|
|
("ETHH20", 'freqtrade/hello/world/ETHH20-trades.json'),
|
|
|
|
(".XBTBON2H", 'freqtrade/hello/world/_XBTBON2H-trades.json'),
|
|
|
|
("ETHUSD.d", 'freqtrade/hello/world/ETHUSD_d-trades.json'),
|
|
|
|
("ACC_OLD_BTC", 'freqtrade/hello/world/ACC_OLD_BTC-trades.json'),
|
|
|
|
])
|
|
|
|
def test_json_pair_trades_filename(pair, expected_result):
|
|
|
|
fn = JsonDataHandler._pair_trades_filename(Path('freqtrade/hello/world'), pair)
|
2019-12-25 15:41:52 +00:00
|
|
|
assert isinstance(fn, Path)
|
2020-01-05 09:36:08 +00:00
|
|
|
assert fn == Path(expected_result)
|
2019-08-14 16:56:46 +00:00
|
|
|
|
2020-01-05 09:36:08 +00:00
|
|
|
fn = JsonGzDataHandler._pair_trades_filename(Path('freqtrade/hello/world'), pair)
|
2019-08-14 16:58:27 +00:00
|
|
|
assert isinstance(fn, Path)
|
2020-01-05 09:36:08 +00:00
|
|
|
assert fn == Path(expected_result + '.gz')
|
2019-08-14 16:58:27 +00:00
|
|
|
|
|
|
|
|
2019-12-27 09:11:49 +00:00
|
|
|
def test_load_cached_data_for_updating(mocker, testdatadir) -> None:
|
|
|
|
|
|
|
|
data_handler = get_datahandler(testdatadir, 'json')
|
2018-12-13 05:35:42 +00:00
|
|
|
|
|
|
|
test_data = None
|
2019-12-27 09:11:49 +00:00
|
|
|
test_filename = testdatadir.joinpath('UNITTEST_BTC-1m.json')
|
2023-02-25 16:08:02 +00:00
|
|
|
with test_filename.open("rt") as file:
|
2018-12-13 05:35:42 +00:00
|
|
|
test_data = json.load(file)
|
|
|
|
|
2020-03-08 10:35:31 +00:00
|
|
|
test_data_df = ohlcv_to_dataframe(test_data, '1m', 'UNITTEST/BTC',
|
|
|
|
fill_missing=False, drop_incomplete=False)
|
2018-12-13 05:35:42 +00:00
|
|
|
# now = last cached item + 1 hour
|
|
|
|
now_ts = test_data[-1][0] / 1000 + 60 * 60
|
|
|
|
mocker.patch('arrow.utcnow', return_value=arrow.get(now_ts))
|
|
|
|
|
|
|
|
# timeframe starts earlier than the cached data
|
|
|
|
# should fully update data
|
|
|
|
timerange = TimeRange('date', None, test_data[0][0] / 1000 - 1, 0)
|
2022-04-30 13:28:01 +00:00
|
|
|
data, start_ts, end_ts = _load_cached_data_for_updating(
|
2022-03-22 06:13:38 +00:00
|
|
|
'UNITTEST/BTC', '1m', timerange, data_handler, CandleType.SPOT)
|
2019-12-27 09:11:49 +00:00
|
|
|
assert data.empty
|
2018-12-13 05:35:42 +00:00
|
|
|
assert start_ts == test_data[0][0] - 1000
|
2022-04-30 13:28:01 +00:00
|
|
|
assert end_ts is None
|
|
|
|
|
|
|
|
# timeframe starts earlier than the cached data - prepending
|
|
|
|
|
|
|
|
timerange = TimeRange('date', None, test_data[0][0] / 1000 - 1, 0)
|
|
|
|
data, start_ts, end_ts = _load_cached_data_for_updating(
|
|
|
|
'UNITTEST/BTC', '1m', timerange, data_handler, CandleType.SPOT, True)
|
|
|
|
assert_frame_equal(data, test_data_df.iloc[:-1])
|
|
|
|
assert start_ts == test_data[0][0] - 1000
|
|
|
|
assert end_ts == test_data[0][0]
|
2018-12-13 05:35:42 +00:00
|
|
|
|
|
|
|
# timeframe starts in the center of the cached data
|
2021-08-16 12:16:24 +00:00
|
|
|
# should return the cached data w/o the last item
|
2018-12-13 05:35:42 +00:00
|
|
|
timerange = TimeRange('date', None, test_data[0][0] / 1000 + 1, 0)
|
2022-04-30 13:28:01 +00:00
|
|
|
data, start_ts, end_ts = _load_cached_data_for_updating(
|
2022-03-22 06:13:38 +00:00
|
|
|
'UNITTEST/BTC', '1m', timerange, data_handler, CandleType.SPOT)
|
2019-12-27 09:11:49 +00:00
|
|
|
|
|
|
|
assert_frame_equal(data, test_data_df.iloc[:-1])
|
|
|
|
assert test_data[-2][0] <= start_ts < test_data[-1][0]
|
2022-04-30 13:28:01 +00:00
|
|
|
assert end_ts is None
|
2018-12-13 05:35:42 +00:00
|
|
|
|
2021-08-16 12:16:24 +00:00
|
|
|
# timeframe starts after the cached data
|
|
|
|
# should return the cached data w/o the last item
|
2019-12-27 09:11:49 +00:00
|
|
|
timerange = TimeRange('date', None, test_data[-1][0] / 1000 + 100, 0)
|
2022-04-30 13:28:01 +00:00
|
|
|
data, start_ts, end_ts = _load_cached_data_for_updating(
|
2022-03-22 06:13:38 +00:00
|
|
|
'UNITTEST/BTC', '1m', timerange, data_handler, CandleType.SPOT)
|
2019-12-27 09:11:49 +00:00
|
|
|
assert_frame_equal(data, test_data_df.iloc[:-1])
|
|
|
|
assert test_data[-2][0] <= start_ts < test_data[-1][0]
|
2022-04-30 13:28:01 +00:00
|
|
|
assert end_ts is None
|
2018-12-13 05:35:42 +00:00
|
|
|
|
|
|
|
# no datafile exist
|
|
|
|
# should return timestamp start time
|
|
|
|
timerange = TimeRange('date', None, now_ts - 10000, 0)
|
2022-04-30 13:28:01 +00:00
|
|
|
data, start_ts, end_ts = _load_cached_data_for_updating(
|
2022-03-22 06:13:38 +00:00
|
|
|
'NONEXIST/BTC', '1m', timerange, data_handler, CandleType.SPOT)
|
2019-12-27 09:11:49 +00:00
|
|
|
assert data.empty
|
2018-12-13 05:35:42 +00:00
|
|
|
assert start_ts == (now_ts - 10000) * 1000
|
2022-04-30 13:28:01 +00:00
|
|
|
assert end_ts is None
|
|
|
|
|
|
|
|
# no datafile exist
|
|
|
|
# should return timestamp start and end time time
|
|
|
|
timerange = TimeRange('date', 'date', now_ts - 1000000, now_ts - 100000)
|
|
|
|
data, start_ts, end_ts = _load_cached_data_for_updating(
|
|
|
|
'NONEXIST/BTC', '1m', timerange, data_handler, CandleType.SPOT)
|
|
|
|
assert data.empty
|
|
|
|
assert start_ts == (now_ts - 1000000) * 1000
|
|
|
|
assert end_ts == (now_ts - 100000) * 1000
|
2018-12-13 05:35:42 +00:00
|
|
|
|
|
|
|
# no datafile exist, no timeframe is set
|
|
|
|
# should return an empty array and None
|
2022-04-30 13:28:01 +00:00
|
|
|
data, start_ts, end_ts = _load_cached_data_for_updating(
|
2022-03-22 06:13:38 +00:00
|
|
|
'NONEXIST/BTC', '1m', None, data_handler, CandleType.SPOT)
|
2019-12-27 09:11:49 +00:00
|
|
|
assert data.empty
|
2018-12-13 05:35:42 +00:00
|
|
|
assert start_ts is None
|
2022-04-30 13:28:01 +00:00
|
|
|
assert end_ts is None
|
2018-12-13 05:35:42 +00:00
|
|
|
|
|
|
|
|
2021-12-03 06:20:00 +00:00
|
|
|
@pytest.mark.parametrize('candle_type,subdir,file_tail', [
|
|
|
|
('mark', 'futures/', '-mark'),
|
2021-12-08 13:35:15 +00:00
|
|
|
('spot', '', ''),
|
2021-11-21 07:43:05 +00:00
|
|
|
])
|
|
|
|
def test_download_pair_history(
|
|
|
|
ohlcv_history_list,
|
|
|
|
mocker,
|
|
|
|
default_conf,
|
|
|
|
tmpdir,
|
|
|
|
candle_type,
|
2021-12-03 06:20:00 +00:00
|
|
|
subdir,
|
2021-11-21 07:43:05 +00:00
|
|
|
file_tail
|
|
|
|
) -> None:
|
2023-02-25 19:26:04 +00:00
|
|
|
mocker.patch(f'{EXMS}.get_historic_ohlcv', return_value=ohlcv_history_list)
|
2018-12-13 05:35:42 +00:00
|
|
|
exchange = get_patched_exchange(mocker, default_conf)
|
2021-05-30 13:50:37 +00:00
|
|
|
tmpdir1 = Path(tmpdir)
|
2021-12-03 06:20:00 +00:00
|
|
|
file1_1 = tmpdir1 / f'{subdir}MEME_BTC-1m{file_tail}.json'
|
|
|
|
file1_5 = tmpdir1 / f'{subdir}MEME_BTC-5m{file_tail}.json'
|
|
|
|
file2_1 = tmpdir1 / f'{subdir}CFI_BTC-1m{file_tail}.json'
|
|
|
|
file2_5 = tmpdir1 / f'{subdir}CFI_BTC-5m{file_tail}.json'
|
2018-12-16 09:30:13 +00:00
|
|
|
|
2019-10-08 19:10:43 +00:00
|
|
|
assert not file1_1.is_file()
|
|
|
|
assert not file2_1.is_file()
|
2018-12-16 09:30:13 +00:00
|
|
|
|
2021-05-30 13:50:37 +00:00
|
|
|
assert _download_pair_history(datadir=tmpdir1, exchange=exchange,
|
2019-12-16 18:57:03 +00:00
|
|
|
pair='MEME/BTC',
|
2021-11-21 07:43:05 +00:00
|
|
|
timeframe='1m',
|
|
|
|
candle_type=candle_type)
|
2021-05-30 13:50:37 +00:00
|
|
|
assert _download_pair_history(datadir=tmpdir1, exchange=exchange,
|
2019-12-16 18:57:03 +00:00
|
|
|
pair='CFI/BTC',
|
2021-11-21 07:43:05 +00:00
|
|
|
timeframe='1m',
|
|
|
|
candle_type=candle_type)
|
2018-12-16 09:30:13 +00:00
|
|
|
assert not exchange._pairs_last_refresh_time
|
2019-10-08 19:10:43 +00:00
|
|
|
assert file1_1.is_file()
|
|
|
|
assert file2_1.is_file()
|
2018-12-13 05:35:42 +00:00
|
|
|
|
|
|
|
# clean files freshly downloaded
|
|
|
|
_clean_test_file(file1_1)
|
2018-12-16 09:30:13 +00:00
|
|
|
_clean_test_file(file2_1)
|
2018-12-13 05:35:42 +00:00
|
|
|
|
2019-10-08 19:10:43 +00:00
|
|
|
assert not file1_5.is_file()
|
|
|
|
assert not file2_5.is_file()
|
2018-12-13 05:35:42 +00:00
|
|
|
|
2021-05-30 13:50:37 +00:00
|
|
|
assert _download_pair_history(datadir=tmpdir1, exchange=exchange,
|
2019-12-16 18:57:03 +00:00
|
|
|
pair='MEME/BTC',
|
2021-11-21 07:43:05 +00:00
|
|
|
timeframe='5m',
|
|
|
|
candle_type=candle_type)
|
2021-05-30 13:50:37 +00:00
|
|
|
assert _download_pair_history(datadir=tmpdir1, exchange=exchange,
|
2019-12-16 18:57:03 +00:00
|
|
|
pair='CFI/BTC',
|
2021-11-21 07:43:05 +00:00
|
|
|
timeframe='5m',
|
|
|
|
candle_type=candle_type)
|
2018-12-13 05:35:42 +00:00
|
|
|
assert not exchange._pairs_last_refresh_time
|
2019-10-08 19:10:43 +00:00
|
|
|
assert file1_5.is_file()
|
|
|
|
assert file2_5.is_file()
|
2018-12-13 05:35:42 +00:00
|
|
|
|
|
|
|
|
2019-09-07 18:56:03 +00:00
|
|
|
def test_download_pair_history2(mocker, default_conf, testdatadir) -> None:
|
2018-12-13 05:35:42 +00:00
|
|
|
tick = [
|
|
|
|
[1509836520000, 0.00162008, 0.00162008, 0.00162008, 0.00162008, 108.14853839],
|
|
|
|
[1509836580000, 0.00161, 0.00161, 0.00161, 0.00161, 82.390199]
|
|
|
|
]
|
2019-12-27 06:07:27 +00:00
|
|
|
json_dump_mock = mocker.patch(
|
2019-12-28 08:59:47 +00:00
|
|
|
'freqtrade.data.history.jsondatahandler.JsonDataHandler.ohlcv_store',
|
2019-12-27 06:07:27 +00:00
|
|
|
return_value=None)
|
2023-02-25 19:26:04 +00:00
|
|
|
mocker.patch(f'{EXMS}.get_historic_ohlcv', return_value=tick)
|
2018-12-13 05:35:42 +00:00
|
|
|
exchange = get_patched_exchange(mocker, default_conf)
|
2021-08-19 18:34:02 +00:00
|
|
|
_download_pair_history(datadir=testdatadir, exchange=exchange, pair="UNITTEST/BTC",
|
2022-03-22 06:13:38 +00:00
|
|
|
timeframe='1m', candle_type='spot')
|
2021-08-19 18:34:02 +00:00
|
|
|
_download_pair_history(datadir=testdatadir, exchange=exchange, pair="UNITTEST/BTC",
|
2022-03-22 06:13:38 +00:00
|
|
|
timeframe='3m', candle_type='spot')
|
2021-11-21 07:43:05 +00:00
|
|
|
_download_pair_history(datadir=testdatadir, exchange=exchange, pair="UNITTEST/USDT",
|
|
|
|
timeframe='1h', candle_type='mark')
|
|
|
|
assert json_dump_mock.call_count == 3
|
2018-12-13 05:35:42 +00:00
|
|
|
|
|
|
|
|
2021-05-30 13:50:37 +00:00
|
|
|
def test_download_backtesting_data_exception(mocker, caplog, default_conf, tmpdir) -> None:
|
2023-02-25 19:26:04 +00:00
|
|
|
mocker.patch(f'{EXMS}.get_historic_ohlcv',
|
2019-05-17 16:05:36 +00:00
|
|
|
side_effect=Exception('File Error'))
|
2021-05-30 13:50:37 +00:00
|
|
|
tmpdir1 = Path(tmpdir)
|
2018-12-16 09:30:13 +00:00
|
|
|
exchange = get_patched_exchange(mocker, default_conf)
|
|
|
|
|
2021-05-30 13:50:37 +00:00
|
|
|
assert not _download_pair_history(datadir=tmpdir1, exchange=exchange,
|
2019-12-16 18:57:03 +00:00
|
|
|
pair='MEME/BTC',
|
2022-03-22 06:13:38 +00:00
|
|
|
timeframe='1m', candle_type='spot')
|
2020-11-25 06:57:23 +00:00
|
|
|
assert log_has('Failed to download history data for pair: "MEME/BTC", timeframe: 1m.', caplog)
|
2018-12-16 09:30:13 +00:00
|
|
|
|
|
|
|
|
2019-09-07 18:56:03 +00:00
|
|
|
def test_load_partial_missing(testdatadir, caplog) -> None:
|
2018-12-13 05:35:42 +00:00
|
|
|
# Make sure we start fresh - test missing data at start
|
|
|
|
start = arrow.get('2018-01-01T00:00:00')
|
|
|
|
end = arrow.get('2018-01-11T00:00:00')
|
2020-03-08 10:35:31 +00:00
|
|
|
data = load_data(testdatadir, '5m', ['UNITTEST/BTC'], startup_candles=20,
|
2020-10-12 17:58:04 +00:00
|
|
|
timerange=TimeRange('date', 'date', start.int_timestamp, end.int_timestamp))
|
2019-10-31 05:51:36 +00:00
|
|
|
assert log_has(
|
|
|
|
'Using indicator startup period: 20 ...', caplog
|
|
|
|
)
|
2018-12-13 05:35:42 +00:00
|
|
|
# timedifference in 5 minutes
|
|
|
|
td = ((end - start).total_seconds() // 60 // 5) + 1
|
2020-03-08 10:35:31 +00:00
|
|
|
assert td != len(data['UNITTEST/BTC'])
|
|
|
|
start_real = data['UNITTEST/BTC'].iloc[0, 0]
|
2022-01-08 13:38:46 +00:00
|
|
|
assert log_has(f'UNITTEST/BTC, spot, 5m, '
|
2022-09-09 18:17:34 +00:00
|
|
|
f'data starts at {start_real.strftime(DATETIME_PRINT_FORMAT)}',
|
2019-08-11 18:16:34 +00:00
|
|
|
caplog)
|
2018-12-13 05:35:42 +00:00
|
|
|
# Make sure we start fresh - test missing data at end
|
|
|
|
caplog.clear()
|
|
|
|
start = arrow.get('2018-01-10T00:00:00')
|
|
|
|
end = arrow.get('2018-02-20T00:00:00')
|
2020-03-08 10:35:31 +00:00
|
|
|
data = load_data(datadir=testdatadir, timeframe='5m', pairs=['UNITTEST/BTC'],
|
2020-10-12 17:58:04 +00:00
|
|
|
timerange=TimeRange('date', 'date', start.int_timestamp, end.int_timestamp))
|
2018-12-13 05:35:42 +00:00
|
|
|
# timedifference in 5 minutes
|
|
|
|
td = ((end - start).total_seconds() // 60 // 5) + 1
|
2020-03-08 10:35:31 +00:00
|
|
|
assert td != len(data['UNITTEST/BTC'])
|
2019-12-26 08:51:03 +00:00
|
|
|
|
2022-09-28 18:23:56 +00:00
|
|
|
# Shift endtime with +5
|
|
|
|
end_real = arrow.get(data['UNITTEST/BTC'].iloc[-1, 0])
|
2022-01-08 13:38:46 +00:00
|
|
|
assert log_has(f'UNITTEST/BTC, spot, 5m, '
|
2022-09-09 18:17:34 +00:00
|
|
|
f'data ends at {end_real.strftime(DATETIME_PRINT_FORMAT)}',
|
2019-08-11 18:16:34 +00:00
|
|
|
caplog)
|
2018-12-13 05:35:42 +00:00
|
|
|
|
|
|
|
|
2022-09-23 05:09:34 +00:00
|
|
|
def test_init(default_conf) -> None:
|
2019-12-17 10:43:42 +00:00
|
|
|
assert {} == load_data(
|
2020-02-10 09:35:48 +00:00
|
|
|
datadir=Path(''),
|
2019-12-17 10:43:42 +00:00
|
|
|
pairs=[],
|
2020-06-01 18:47:27 +00:00
|
|
|
timeframe=default_conf['timeframe']
|
2019-12-17 10:43:42 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_init_with_refresh(default_conf, mocker) -> None:
|
2018-12-13 05:35:42 +00:00
|
|
|
exchange = get_patched_exchange(mocker, default_conf)
|
2019-12-17 10:43:42 +00:00
|
|
|
refresh_data(
|
2020-02-10 09:35:48 +00:00
|
|
|
datadir=Path(''),
|
2019-12-17 10:43:42 +00:00
|
|
|
pairs=[],
|
2020-06-01 18:47:27 +00:00
|
|
|
timeframe=default_conf['timeframe'],
|
2022-03-22 06:13:38 +00:00
|
|
|
exchange=exchange,
|
|
|
|
candle_type=CandleType.SPOT
|
2019-12-17 10:43:42 +00:00
|
|
|
)
|
2019-12-17 08:36:26 +00:00
|
|
|
assert {} == load_data(
|
2020-02-10 09:35:48 +00:00
|
|
|
datadir=Path(''),
|
2018-12-13 05:35:42 +00:00
|
|
|
pairs=[],
|
2020-06-01 18:47:27 +00:00
|
|
|
timeframe=default_conf['timeframe']
|
2018-12-13 05:35:42 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2019-10-08 19:10:43 +00:00
|
|
|
def test_file_dump_json_tofile(testdatadir) -> None:
|
2023-03-19 16:50:08 +00:00
|
|
|
file = testdatadir / f'test_{uuid.uuid4()}.json'
|
2018-12-13 05:35:42 +00:00
|
|
|
data = {'bar': 'foo'}
|
|
|
|
|
|
|
|
# check the file we will create does not exist
|
2019-10-08 19:10:43 +00:00
|
|
|
assert not file.is_file()
|
2018-12-13 05:35:42 +00:00
|
|
|
|
|
|
|
# Create the Json file
|
|
|
|
file_dump_json(file, data)
|
|
|
|
|
|
|
|
# Check the file was create
|
2019-10-08 19:10:43 +00:00
|
|
|
assert file.is_file()
|
2018-12-13 05:35:42 +00:00
|
|
|
|
|
|
|
# Open the Json file created and test the data is in it
|
2019-10-08 19:10:43 +00:00
|
|
|
with file.open() as data_file:
|
2018-12-13 05:35:42 +00:00
|
|
|
json_from_file = json.load(data_file)
|
|
|
|
|
|
|
|
assert 'bar' in json_from_file
|
|
|
|
assert json_from_file['bar'] == 'foo'
|
|
|
|
|
|
|
|
# Remove the file
|
|
|
|
_clean_test_file(file)
|
2019-05-25 18:25:59 +00:00
|
|
|
|
|
|
|
|
2019-12-17 22:06:03 +00:00
|
|
|
def test_get_timerange(default_conf, mocker, testdatadir) -> None:
|
2019-05-25 18:25:59 +00:00
|
|
|
patch_exchange(mocker)
|
2020-02-11 22:39:15 +00:00
|
|
|
|
2021-09-21 18:18:14 +00:00
|
|
|
default_conf.update({'strategy': CURRENT_TEST_STRATEGY})
|
2020-02-11 22:39:15 +00:00
|
|
|
strategy = StrategyResolver.load_strategy(default_conf)
|
2019-05-25 18:25:59 +00:00
|
|
|
|
2021-08-09 12:53:18 +00:00
|
|
|
data = strategy.advise_all_indicators(
|
2019-12-17 08:36:26 +00:00
|
|
|
load_data(
|
2019-09-07 18:56:03 +00:00
|
|
|
datadir=testdatadir,
|
2019-11-02 19:19:13 +00:00
|
|
|
timeframe='1m',
|
2019-05-25 18:25:59 +00:00
|
|
|
pairs=['UNITTEST/BTC']
|
|
|
|
)
|
|
|
|
)
|
2019-12-17 22:06:03 +00:00
|
|
|
min_date, max_date = get_timerange(data)
|
2019-05-25 18:25:59 +00:00
|
|
|
assert min_date.isoformat() == '2017-11-04T23:02:00+00:00'
|
2022-09-28 18:23:56 +00:00
|
|
|
assert max_date.isoformat() == '2017-11-14T22:59:00+00:00'
|
2019-05-25 18:25:59 +00:00
|
|
|
|
|
|
|
|
2019-09-07 18:56:03 +00:00
|
|
|
def test_validate_backtest_data_warn(default_conf, mocker, caplog, testdatadir) -> None:
|
2019-05-25 18:25:59 +00:00
|
|
|
patch_exchange(mocker)
|
2020-02-11 22:39:15 +00:00
|
|
|
|
2021-09-21 18:18:14 +00:00
|
|
|
default_conf.update({'strategy': CURRENT_TEST_STRATEGY})
|
2020-02-11 22:39:15 +00:00
|
|
|
strategy = StrategyResolver.load_strategy(default_conf)
|
2019-05-25 18:25:59 +00:00
|
|
|
|
2021-08-09 12:53:18 +00:00
|
|
|
data = strategy.advise_all_indicators(
|
2019-12-17 08:36:26 +00:00
|
|
|
load_data(
|
2019-09-07 18:56:03 +00:00
|
|
|
datadir=testdatadir,
|
2019-11-02 19:19:13 +00:00
|
|
|
timeframe='1m',
|
2019-05-25 18:25:59 +00:00
|
|
|
pairs=['UNITTEST/BTC'],
|
|
|
|
fill_up_missing=False
|
|
|
|
)
|
|
|
|
)
|
2019-12-17 22:06:03 +00:00
|
|
|
min_date, max_date = get_timerange(data)
|
2019-05-25 18:25:59 +00:00
|
|
|
caplog.clear()
|
2019-12-17 08:36:26 +00:00
|
|
|
assert validate_backtest_data(data['UNITTEST/BTC'], 'UNITTEST/BTC',
|
|
|
|
min_date, max_date, timeframe_to_minutes('1m'))
|
2019-05-25 18:25:59 +00:00
|
|
|
assert len(caplog.record_tuples) == 1
|
|
|
|
assert log_has(
|
2022-09-28 18:23:56 +00:00
|
|
|
"UNITTEST/BTC has missing frames: expected 14397, got 13681, that's 716 missing values",
|
2019-08-11 18:16:34 +00:00
|
|
|
caplog)
|
2019-05-25 18:25:59 +00:00
|
|
|
|
|
|
|
|
2019-09-07 18:56:03 +00:00
|
|
|
def test_validate_backtest_data(default_conf, mocker, caplog, testdatadir) -> None:
|
2019-05-25 18:25:59 +00:00
|
|
|
patch_exchange(mocker)
|
2020-02-11 22:39:15 +00:00
|
|
|
|
2021-09-21 18:18:14 +00:00
|
|
|
default_conf.update({'strategy': CURRENT_TEST_STRATEGY})
|
2020-02-11 22:39:15 +00:00
|
|
|
strategy = StrategyResolver.load_strategy(default_conf)
|
2019-05-25 18:25:59 +00:00
|
|
|
|
2022-10-04 04:42:04 +00:00
|
|
|
timerange = TimeRange()
|
2021-08-09 12:53:18 +00:00
|
|
|
data = strategy.advise_all_indicators(
|
2019-12-17 08:36:26 +00:00
|
|
|
load_data(
|
2019-09-07 18:56:03 +00:00
|
|
|
datadir=testdatadir,
|
2019-11-02 19:19:13 +00:00
|
|
|
timeframe='5m',
|
2019-05-25 18:25:59 +00:00
|
|
|
pairs=['UNITTEST/BTC'],
|
|
|
|
timerange=timerange
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2019-12-17 22:06:03 +00:00
|
|
|
min_date, max_date = get_timerange(data)
|
2019-05-25 18:25:59 +00:00
|
|
|
caplog.clear()
|
2019-12-17 08:36:26 +00:00
|
|
|
assert not validate_backtest_data(data['UNITTEST/BTC'], 'UNITTEST/BTC',
|
|
|
|
min_date, max_date, timeframe_to_minutes('5m'))
|
2019-05-25 18:25:59 +00:00
|
|
|
assert len(caplog.record_tuples) == 0
|
2019-08-25 13:02:40 +00:00
|
|
|
|
|
|
|
|
2021-12-03 13:57:09 +00:00
|
|
|
@pytest.mark.parametrize('trademode,callcount', [
|
|
|
|
('spot', 4),
|
|
|
|
('margin', 4),
|
2021-12-18 14:32:02 +00:00
|
|
|
('futures', 8), # Called 8 times - 4 normal, 2 funding and 2 mark/index calls
|
2021-12-03 13:57:09 +00:00
|
|
|
])
|
|
|
|
def test_refresh_backtest_ohlcv_data(
|
|
|
|
mocker, default_conf, markets, caplog, testdatadir, trademode, callcount):
|
2019-12-28 08:59:47 +00:00
|
|
|
dl_mock = mocker.patch('freqtrade.data.history.history_utils._download_pair_history',
|
|
|
|
MagicMock())
|
2023-02-25 19:26:04 +00:00
|
|
|
mocker.patch(f'{EXMS}.markets', PropertyMock(return_value=markets))
|
2019-08-25 13:02:40 +00:00
|
|
|
mocker.patch.object(Path, "exists", MagicMock(return_value=True))
|
|
|
|
mocker.patch.object(Path, "unlink", MagicMock())
|
|
|
|
|
|
|
|
ex = get_patched_exchange(mocker, default_conf)
|
|
|
|
timerange = TimeRange.parse_timerange("20190101-20190102")
|
|
|
|
refresh_backtest_ohlcv_data(exchange=ex, pairs=["ETH/BTC", "XRP/BTC"],
|
2019-12-16 18:43:33 +00:00
|
|
|
timeframes=["1m", "5m"], datadir=testdatadir,
|
2021-12-03 13:57:09 +00:00
|
|
|
timerange=timerange, erase=True,
|
|
|
|
trading_mode=trademode
|
2019-08-25 13:02:40 +00:00
|
|
|
)
|
|
|
|
|
2021-12-03 13:57:09 +00:00
|
|
|
assert dl_mock.call_count == callcount
|
2019-08-25 13:02:40 +00:00
|
|
|
assert dl_mock.call_args[1]['timerange'].starttype == 'date'
|
|
|
|
|
|
|
|
assert log_has("Downloading pair ETH/BTC, interval 1m.", caplog)
|
|
|
|
|
|
|
|
|
2019-09-07 18:56:03 +00:00
|
|
|
def test_download_data_no_markets(mocker, default_conf, caplog, testdatadir):
|
2019-12-28 09:27:49 +00:00
|
|
|
dl_mock = mocker.patch('freqtrade.data.history.history_utils._download_pair_history',
|
|
|
|
MagicMock())
|
2019-10-26 11:24:26 +00:00
|
|
|
|
|
|
|
ex = get_patched_exchange(mocker, default_conf)
|
2023-02-25 19:26:04 +00:00
|
|
|
mocker.patch(f'{EXMS}.markets', PropertyMock(return_value={}))
|
2019-08-25 13:02:40 +00:00
|
|
|
timerange = TimeRange.parse_timerange("20190101-20190102")
|
2019-10-26 11:24:26 +00:00
|
|
|
unav_pairs = refresh_backtest_ohlcv_data(exchange=ex, pairs=["BTT/BTC", "LTC/USDT"],
|
2019-08-25 13:02:40 +00:00
|
|
|
timeframes=["1m", "5m"],
|
2019-12-16 18:43:33 +00:00
|
|
|
datadir=testdatadir,
|
2021-12-03 13:57:09 +00:00
|
|
|
timerange=timerange, erase=False,
|
|
|
|
trading_mode='spot'
|
2019-08-25 13:02:40 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
assert dl_mock.call_count == 0
|
2019-10-26 11:24:26 +00:00
|
|
|
assert "BTT/BTC" in unav_pairs
|
|
|
|
assert "LTC/USDT" in unav_pairs
|
|
|
|
assert log_has("Skipping pair BTT/BTC...", caplog)
|
2019-10-08 18:45:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_refresh_backtest_trades_data(mocker, default_conf, markets, caplog, testdatadir):
|
2019-12-28 08:59:47 +00:00
|
|
|
dl_mock = mocker.patch('freqtrade.data.history.history_utils._download_trades_history',
|
|
|
|
MagicMock())
|
2023-02-25 19:26:04 +00:00
|
|
|
mocker.patch(f'{EXMS}.markets', PropertyMock(return_value=markets))
|
2019-10-08 18:45:35 +00:00
|
|
|
mocker.patch.object(Path, "exists", MagicMock(return_value=True))
|
|
|
|
mocker.patch.object(Path, "unlink", MagicMock())
|
|
|
|
|
|
|
|
ex = get_patched_exchange(mocker, default_conf)
|
|
|
|
timerange = TimeRange.parse_timerange("20190101-20190102")
|
|
|
|
unavailable_pairs = refresh_backtest_trades_data(exchange=ex,
|
|
|
|
pairs=["ETH/BTC", "XRP/BTC", "XRP/ETH"],
|
|
|
|
datadir=testdatadir,
|
|
|
|
timerange=timerange, erase=True
|
|
|
|
)
|
|
|
|
|
|
|
|
assert dl_mock.call_count == 2
|
|
|
|
assert dl_mock.call_args[1]['timerange'].starttype == 'date'
|
|
|
|
|
|
|
|
assert log_has("Downloading trades for pair ETH/BTC.", caplog)
|
|
|
|
assert unavailable_pairs == ["XRP/ETH"]
|
|
|
|
assert log_has("Skipping pair XRP/ETH...", caplog)
|
2019-10-08 19:18:56 +00:00
|
|
|
|
|
|
|
|
2021-05-30 13:50:37 +00:00
|
|
|
def test_download_trades_history(trades_history, mocker, default_conf, testdatadir, caplog,
|
|
|
|
tmpdir) -> None:
|
|
|
|
tmpdir1 = Path(tmpdir)
|
2019-10-08 19:18:56 +00:00
|
|
|
ght_mock = MagicMock(side_effect=lambda pair, *args, **kwargs: (pair, trades_history))
|
2023-02-25 19:26:04 +00:00
|
|
|
mocker.patch(f'{EXMS}.get_historic_trades', ght_mock)
|
2019-10-08 19:18:56 +00:00
|
|
|
exchange = get_patched_exchange(mocker, default_conf)
|
2021-05-30 13:50:37 +00:00
|
|
|
file1 = tmpdir1 / 'ETH_BTC-trades.json.gz'
|
|
|
|
data_handler = get_datahandler(tmpdir1, data_format='jsongz')
|
2019-10-08 19:18:56 +00:00
|
|
|
|
|
|
|
assert not file1.is_file()
|
|
|
|
|
2019-12-25 15:34:27 +00:00
|
|
|
assert _download_trades_history(data_handler=data_handler, exchange=exchange,
|
2019-12-16 18:57:03 +00:00
|
|
|
pair='ETH/BTC')
|
2019-10-08 19:18:56 +00:00
|
|
|
assert log_has("New Amount of trades: 5", caplog)
|
|
|
|
assert file1.is_file()
|
|
|
|
|
2020-04-01 18:04:36 +00:00
|
|
|
ght_mock.reset_mock()
|
2020-04-01 18:31:21 +00:00
|
|
|
since_time = int(trades_history[-3][0] // 1000)
|
|
|
|
since_time2 = int(trades_history[-1][0] // 1000)
|
2020-04-01 18:04:36 +00:00
|
|
|
timerange = TimeRange('date', None, since_time, 0)
|
|
|
|
assert _download_trades_history(data_handler=data_handler, exchange=exchange,
|
|
|
|
pair='ETH/BTC', timerange=timerange)
|
|
|
|
|
|
|
|
assert ght_mock.call_count == 1
|
|
|
|
# Check this in seconds - since we had to convert to seconds above too.
|
2020-04-02 09:54:30 +00:00
|
|
|
assert int(ght_mock.call_args_list[0][1]['since'] // 1000) == since_time2 - 5
|
2020-06-24 15:40:23 +00:00
|
|
|
assert ght_mock.call_args_list[0][1]['from_id'] is not None
|
2020-04-01 18:04:36 +00:00
|
|
|
|
2021-05-30 13:50:37 +00:00
|
|
|
file1.unlink()
|
2019-10-08 19:18:56 +00:00
|
|
|
|
2023-02-25 19:26:04 +00:00
|
|
|
mocker.patch(f'{EXMS}.get_historic_trades', MagicMock(side_effect=ValueError))
|
2019-10-08 19:18:56 +00:00
|
|
|
|
2019-12-25 15:34:27 +00:00
|
|
|
assert not _download_trades_history(data_handler=data_handler, exchange=exchange,
|
2019-12-16 18:57:03 +00:00
|
|
|
pair='ETH/BTC')
|
2019-10-08 19:18:56 +00:00
|
|
|
assert log_has_re('Failed to download historic trades for pair: "ETH/BTC".*', caplog)
|
|
|
|
|
2021-05-30 13:50:37 +00:00
|
|
|
file2 = tmpdir1 / 'XRP_ETH-trades.json.gz'
|
|
|
|
copyfile(testdatadir / file2.name, file2)
|
2020-06-24 15:40:23 +00:00
|
|
|
|
|
|
|
ght_mock.reset_mock()
|
2023-02-25 19:26:04 +00:00
|
|
|
mocker.patch(f'{EXMS}.get_historic_trades', ght_mock)
|
2020-06-24 15:40:23 +00:00
|
|
|
# Since before first start date
|
|
|
|
since_time = int(trades_history[0][0] // 1000) - 500
|
|
|
|
timerange = TimeRange('date', None, since_time, 0)
|
|
|
|
|
|
|
|
assert _download_trades_history(data_handler=data_handler, exchange=exchange,
|
|
|
|
pair='XRP/ETH', timerange=timerange)
|
|
|
|
|
|
|
|
assert ght_mock.call_count == 1
|
|
|
|
|
|
|
|
assert int(ght_mock.call_args_list[0][1]['since'] // 1000) == since_time
|
|
|
|
assert ght_mock.call_args_list[0][1]['from_id'] is None
|
|
|
|
assert log_has_re(r'Start earlier than available data. Redownloading trades for.*', caplog)
|
|
|
|
_clean_test_file(file2)
|
|
|
|
|
2019-10-08 19:18:56 +00:00
|
|
|
|
2021-05-30 13:50:37 +00:00
|
|
|
def test_convert_trades_to_ohlcv(testdatadir, tmpdir, caplog):
|
|
|
|
tmpdir1 = Path(tmpdir)
|
2019-10-13 14:04:40 +00:00
|
|
|
pair = 'XRP/ETH'
|
2021-05-30 13:50:37 +00:00
|
|
|
file1 = tmpdir1 / 'XRP_ETH-1m.json'
|
|
|
|
file5 = tmpdir1 / 'XRP_ETH-5m.json'
|
|
|
|
filetrades = tmpdir1 / 'XRP_ETH-trades.json.gz'
|
|
|
|
copyfile(testdatadir / file1.name, file1)
|
|
|
|
copyfile(testdatadir / file5.name, file5)
|
|
|
|
copyfile(testdatadir / filetrades.name, filetrades)
|
2019-10-13 14:04:40 +00:00
|
|
|
|
2021-05-30 13:50:37 +00:00
|
|
|
# Compare downloaded dataset with converted dataset
|
|
|
|
dfbak_1m = load_pair_history(datadir=tmpdir1, timeframe="1m", pair=pair)
|
|
|
|
dfbak_5m = load_pair_history(datadir=tmpdir1, timeframe="5m", pair=pair)
|
2019-10-13 14:04:40 +00:00
|
|
|
|
|
|
|
tr = TimeRange.parse_timerange('20191011-20191012')
|
|
|
|
|
2019-10-13 17:21:27 +00:00
|
|
|
convert_trades_to_ohlcv([pair], timeframes=['1m', '5m'],
|
2021-05-30 13:50:37 +00:00
|
|
|
datadir=tmpdir1, timerange=tr, erase=True)
|
2019-10-13 14:04:40 +00:00
|
|
|
|
2019-10-13 17:21:27 +00:00
|
|
|
assert log_has("Deleting existing data for pair XRP/ETH, interval 1m.", caplog)
|
2019-10-13 14:04:40 +00:00
|
|
|
# Load new data
|
2021-05-30 13:50:37 +00:00
|
|
|
df_1m = load_pair_history(datadir=tmpdir1, timeframe="1m", pair=pair)
|
|
|
|
df_5m = load_pair_history(datadir=tmpdir1, timeframe="5m", pair=pair)
|
2019-10-13 14:04:40 +00:00
|
|
|
|
|
|
|
assert df_1m.equals(dfbak_1m)
|
|
|
|
assert df_5m.equals(dfbak_5m)
|
|
|
|
|
2020-11-21 09:57:19 +00:00
|
|
|
assert not log_has('Could not convert NoDatapair to OHLCV.', caplog)
|
|
|
|
|
|
|
|
convert_trades_to_ohlcv(['NoDatapair'], timeframes=['1m', '5m'],
|
2021-05-30 13:50:37 +00:00
|
|
|
datadir=tmpdir1, timerange=tr, erase=True)
|
2020-11-21 09:57:19 +00:00
|
|
|
assert log_has('Could not convert NoDatapair to OHLCV.', caplog)
|