2017-11-25 00:04:11 +00:00
|
|
|
# pragma pylint: disable=missing-docstring
|
|
|
|
|
2018-03-17 21:44:47 +00:00
|
|
|
import gzip
|
2017-11-25 00:04:11 +00:00
|
|
|
import json
|
2018-03-25 19:37:14 +00:00
|
|
|
import logging
|
2017-11-25 00:04:11 +00:00
|
|
|
import os
|
2018-04-27 21:16:34 +00:00
|
|
|
import arrow
|
2018-03-17 21:43:36 +00:00
|
|
|
from typing import Optional, List, Dict, Tuple
|
2018-01-18 07:10:48 +00:00
|
|
|
|
2018-01-11 14:49:04 +00:00
|
|
|
from freqtrade import misc
|
2018-03-17 21:44:47 +00:00
|
|
|
from freqtrade.exchange import get_ticker_history
|
2018-04-27 21:16:34 +00:00
|
|
|
from freqtrade.constants import Constants
|
|
|
|
|
2018-01-18 07:10:48 +00:00
|
|
|
from user_data.hyperopt_conf import hyperopt_optimize_conf
|
2017-11-25 00:04:11 +00:00
|
|
|
|
2018-03-25 19:37:14 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
2017-12-16 14:42:28 +00:00
|
|
|
|
2017-11-25 00:04:11 +00:00
|
|
|
|
2018-03-17 21:43:36 +00:00
|
|
|
def trim_tickerlist(tickerlist: List[Dict], timerange: Tuple[Tuple, int, int]) -> List[Dict]:
|
|
|
|
stype, start, stop = timerange
|
2018-01-26 16:41:41 +00:00
|
|
|
|
2018-04-27 21:16:34 +00:00
|
|
|
start_index = 0
|
|
|
|
stop_index = len(tickerlist)
|
|
|
|
|
|
|
|
if stype[0] == 'line':
|
|
|
|
stop_index = start
|
|
|
|
if stype[0] == 'index':
|
|
|
|
start_index = start
|
|
|
|
elif stype[0] == 'date':
|
|
|
|
while tickerlist[start_index][0] < start * 1000:
|
|
|
|
start_index += 1
|
|
|
|
|
|
|
|
if stype[1] == 'line':
|
|
|
|
start_index = len(tickerlist) + stop
|
|
|
|
if stype[1] == 'index':
|
|
|
|
stop_index = stop
|
|
|
|
elif stype[1] == 'date':
|
|
|
|
while tickerlist[stop_index-1][0] > stop * 1000:
|
|
|
|
stop_index -= 1
|
|
|
|
|
|
|
|
if start_index > stop_index:
|
|
|
|
raise ValueError(f'The timerange [{start},{stop}] is incorrect')
|
|
|
|
|
|
|
|
return tickerlist[start_index:stop_index]
|
2018-01-15 21:25:02 +00:00
|
|
|
|
|
|
|
|
2018-03-17 21:43:36 +00:00
|
|
|
def load_tickerdata_file(
|
|
|
|
datadir: str, pair: str,
|
2018-03-24 09:21:59 +00:00
|
|
|
ticker_interval: str,
|
2018-03-17 21:43:36 +00:00
|
|
|
timerange: Optional[Tuple[Tuple, int, int]] = None) -> Optional[List[Dict]]:
|
2018-01-05 09:20:48 +00:00
|
|
|
"""
|
|
|
|
Load a pair from file,
|
|
|
|
:return dict OR empty if unsuccesful
|
|
|
|
"""
|
2018-01-06 22:24:35 +00:00
|
|
|
path = make_testdata_path(datadir)
|
2018-02-03 16:15:40 +00:00
|
|
|
pair_file_string = pair.replace('/', '_')
|
2018-02-15 06:56:13 +00:00
|
|
|
file = os.path.join(path, '{pair}-{ticker_interval}.json'.format(
|
2018-02-03 16:15:40 +00:00
|
|
|
pair=pair_file_string,
|
2018-01-05 09:20:48 +00:00
|
|
|
ticker_interval=ticker_interval,
|
2018-02-15 06:56:13 +00:00
|
|
|
))
|
2018-01-28 13:52:27 +00:00
|
|
|
gzipfile = file + '.gz'
|
|
|
|
|
2018-01-28 13:57:25 +00:00
|
|
|
# If the file does not exist we download it when None is returned.
|
2018-01-28 13:52:27 +00:00
|
|
|
# If file exists, read the file, load the json
|
|
|
|
if os.path.isfile(gzipfile):
|
2018-02-15 06:56:13 +00:00
|
|
|
logger.debug('Loading ticker data from file %s', gzipfile)
|
2018-01-28 13:52:27 +00:00
|
|
|
with gzip.open(gzipfile) as tickerdata:
|
|
|
|
pairdata = json.load(tickerdata)
|
|
|
|
elif os.path.isfile(file):
|
2018-02-15 06:56:13 +00:00
|
|
|
logger.debug('Loading ticker data from file %s', file)
|
2018-01-28 13:52:27 +00:00
|
|
|
with open(file) as tickerdata:
|
|
|
|
pairdata = json.load(tickerdata)
|
|
|
|
else:
|
2018-01-05 09:20:48 +00:00
|
|
|
return None
|
|
|
|
|
2018-01-15 21:25:02 +00:00
|
|
|
if timerange:
|
|
|
|
pairdata = trim_tickerlist(pairdata, timerange)
|
2018-01-05 09:20:48 +00:00
|
|
|
return pairdata
|
|
|
|
|
|
|
|
|
2018-03-24 09:21:59 +00:00
|
|
|
def load_data(datadir: str,
|
|
|
|
ticker_interval: str,
|
2018-03-17 21:43:36 +00:00
|
|
|
pairs: Optional[List[str]] = None,
|
|
|
|
refresh_pairs: Optional[bool] = False,
|
|
|
|
timerange: Optional[Tuple[Tuple, int, int]] = None) -> Dict[str, List]:
|
2017-11-25 00:04:11 +00:00
|
|
|
"""
|
|
|
|
Loads ticker history data for the given parameters
|
|
|
|
:return: dict
|
|
|
|
"""
|
|
|
|
result = {}
|
2017-12-16 14:42:28 +00:00
|
|
|
|
2017-12-21 07:31:26 +00:00
|
|
|
_pairs = pairs or hyperopt_optimize_conf()['exchange']['pair_whitelist']
|
|
|
|
|
2017-12-16 14:42:28 +00:00
|
|
|
# If the user force the refresh of pairs
|
|
|
|
if refresh_pairs:
|
2018-01-06 22:24:35 +00:00
|
|
|
logger.info('Download data for all pairs and store them in %s', datadir)
|
2018-04-27 21:16:34 +00:00
|
|
|
download_pairs(datadir, _pairs, ticker_interval, timerange=timerange)
|
2017-12-16 14:42:28 +00:00
|
|
|
|
2017-12-21 07:31:26 +00:00
|
|
|
for pair in _pairs:
|
2018-01-15 21:25:02 +00:00
|
|
|
pairdata = load_tickerdata_file(datadir, pair, ticker_interval, timerange=timerange)
|
2018-01-05 09:20:48 +00:00
|
|
|
if not pairdata:
|
|
|
|
# download the tickerdata from exchange
|
2018-01-06 22:24:35 +00:00
|
|
|
download_backtesting_testdata(datadir, pair=pair, interval=ticker_interval)
|
2018-01-05 09:20:48 +00:00
|
|
|
# and retry reading the pair
|
2018-01-15 21:25:02 +00:00
|
|
|
pairdata = load_tickerdata_file(datadir, pair, ticker_interval, timerange=timerange)
|
2018-01-05 09:20:48 +00:00
|
|
|
result[pair] = pairdata
|
2017-11-25 00:04:11 +00:00
|
|
|
return result
|
|
|
|
|
|
|
|
|
2018-01-06 22:24:35 +00:00
|
|
|
def make_testdata_path(datadir: str) -> str:
|
2017-12-16 14:42:28 +00:00
|
|
|
"""Return the path where testdata files are stored"""
|
2018-02-09 07:35:38 +00:00
|
|
|
return datadir or os.path.abspath(
|
|
|
|
os.path.join(
|
|
|
|
os.path.dirname(__file__), '..', 'tests', 'testdata'
|
|
|
|
)
|
|
|
|
)
|
2017-12-16 14:42:28 +00:00
|
|
|
|
|
|
|
|
2018-04-27 21:16:34 +00:00
|
|
|
def download_pairs(datadir, pairs: List[str],
|
|
|
|
ticker_interval: str,
|
|
|
|
timerange: Optional[Tuple[Tuple, int, int]] = None) -> bool:
|
2018-01-13 07:32:44 +00:00
|
|
|
"""For each pairs passed in parameters, download the ticker intervals"""
|
2017-12-16 14:42:28 +00:00
|
|
|
for pair in pairs:
|
|
|
|
try:
|
2018-04-27 21:30:42 +00:00
|
|
|
download_backtesting_testdata(datadir,
|
|
|
|
pair=pair,
|
|
|
|
interval=ticker_interval,
|
|
|
|
timerange=timerange)
|
2017-12-16 14:42:28 +00:00
|
|
|
except BaseException:
|
2018-03-02 15:22:00 +00:00
|
|
|
logger.info(
|
2018-03-24 09:21:59 +00:00
|
|
|
'Failed to download the pair: "%s", Interval: %s',
|
2018-03-02 15:22:00 +00:00
|
|
|
pair,
|
|
|
|
ticker_interval
|
|
|
|
)
|
2017-12-16 14:42:28 +00:00
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
2018-04-27 21:16:34 +00:00
|
|
|
def get_start_ts_from_timerange(timerange: Tuple[Tuple, int, int], interval: str) -> int:
|
|
|
|
if not timerange:
|
|
|
|
return None
|
|
|
|
|
|
|
|
if timerange[0][0] == 'date':
|
|
|
|
return timerange[1] * 1000
|
2018-04-27 21:30:42 +00:00
|
|
|
|
2018-04-27 21:16:34 +00:00
|
|
|
if timerange[0][1] == 'line':
|
|
|
|
num_minutes = timerange[2] * Constants.TICKER_INTERVAL_MINUTES[interval]
|
|
|
|
return arrow.utcnow().shift(minutes=num_minutes).timestamp * 1000
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
2018-01-10 11:00:00 +00:00
|
|
|
# FIX: 20180110, suggest rename interval to tick_interval
|
2018-04-27 21:16:34 +00:00
|
|
|
def download_backtesting_testdata(datadir: str,
|
|
|
|
pair: str,
|
|
|
|
interval: str = '5m',
|
|
|
|
timerange: Optional[Tuple[Tuple, int, int]] = None) -> bool:
|
2017-12-16 14:42:28 +00:00
|
|
|
"""
|
2018-04-27 21:16:34 +00:00
|
|
|
Download the latest ticker intervals from the exchange for the pairs passed in parameters
|
2017-12-16 14:42:28 +00:00
|
|
|
Based on @Rybolov work: https://github.com/rybolov/freqtrade-data
|
|
|
|
:param pairs: list of pairs to download
|
2018-04-27 21:30:42 +00:00
|
|
|
:param interval: ticker interval
|
2018-04-27 21:16:34 +00:00
|
|
|
:param timerange: range of time to download
|
2017-12-16 14:42:28 +00:00
|
|
|
:return: bool
|
|
|
|
"""
|
|
|
|
|
2018-01-06 22:24:35 +00:00
|
|
|
path = make_testdata_path(datadir)
|
2018-03-02 15:22:00 +00:00
|
|
|
logger.info(
|
2018-03-24 09:21:59 +00:00
|
|
|
'Download the pair: "%s", Interval: %s',
|
2018-03-02 15:22:00 +00:00
|
|
|
pair,
|
|
|
|
interval
|
|
|
|
)
|
2017-12-16 14:42:28 +00:00
|
|
|
|
2018-03-24 18:45:23 +00:00
|
|
|
filepair = pair.replace("/", "_")
|
2017-12-28 08:11:52 +00:00
|
|
|
filename = os.path.join(path, '{pair}-{interval}.json'.format(
|
|
|
|
pair=filepair,
|
|
|
|
interval=interval,
|
2017-12-16 14:42:28 +00:00
|
|
|
))
|
|
|
|
|
2018-04-27 21:16:34 +00:00
|
|
|
since = get_start_ts_from_timerange(timerange, interval)
|
|
|
|
|
2017-12-16 14:42:28 +00:00
|
|
|
if os.path.isfile(filename):
|
2018-02-09 07:35:38 +00:00
|
|
|
with open(filename, "rt") as file:
|
|
|
|
data = json.load(file)
|
2018-04-27 21:16:34 +00:00
|
|
|
|
|
|
|
if since:
|
|
|
|
if since < data[0][0]:
|
|
|
|
# fully update the data
|
|
|
|
data = []
|
|
|
|
else:
|
|
|
|
# download unexist data only
|
|
|
|
since = max(since, data[-1][0] + 1)
|
|
|
|
else:
|
|
|
|
# download unexist data only
|
|
|
|
since = data[-1][0] + 1
|
2017-12-16 14:42:28 +00:00
|
|
|
else:
|
|
|
|
data = []
|
|
|
|
|
2018-04-27 21:16:34 +00:00
|
|
|
logger.debug("Current Start: %s", misc.format_ms_time(data[1][0]) if data else 'None')
|
|
|
|
logger.debug("Current End: %s", misc.format_ms_time(data[-1][0]) if data else 'None')
|
|
|
|
|
|
|
|
new_data = get_ticker_history(pair=pair, tick_interval=interval, since=since)
|
|
|
|
data.extend(new_data)
|
|
|
|
|
2018-03-25 11:38:17 +00:00
|
|
|
logger.debug("New Start: %s", misc.format_ms_time(data[0][0]))
|
2018-04-27 21:16:34 +00:00
|
|
|
logger.debug("New End: %s", misc.format_ms_time(data[-1][0]))
|
2017-12-16 14:42:28 +00:00
|
|
|
|
2018-01-11 14:49:04 +00:00
|
|
|
misc.file_dump_json(filename, data)
|
2017-12-16 14:42:28 +00:00
|
|
|
|
|
|
|
return True
|