2020-01-26 12:17:26 +00:00
|
|
|
import logging
|
|
|
|
import sys
|
2020-07-12 07:57:00 +00:00
|
|
|
from collections import defaultdict
|
2020-10-20 18:11:38 +00:00
|
|
|
from datetime import datetime, timedelta
|
2020-01-26 12:17:26 +00:00
|
|
|
from typing import Any, Dict, List
|
|
|
|
|
2020-01-26 12:55:48 +00:00
|
|
|
from freqtrade.configuration import TimeRange, setup_utils_configuration
|
2022-08-19 11:44:31 +00:00
|
|
|
from freqtrade.constants import DATETIME_PRINT_FORMAT
|
2020-09-28 17:39:41 +00:00
|
|
|
from freqtrade.data.converter import convert_ohlcv_format, convert_trades_format
|
|
|
|
from freqtrade.data.history import (convert_trades_to_ohlcv, refresh_backtest_ohlcv_data,
|
2020-01-26 12:17:26 +00:00
|
|
|
refresh_backtest_trades_data)
|
2022-03-03 06:06:13 +00:00
|
|
|
from freqtrade.enums import CandleType, RunMode, TradingMode
|
2020-01-26 12:17:26 +00:00
|
|
|
from freqtrade.exceptions import OperationalException
|
2022-08-25 05:08:58 +00:00
|
|
|
from freqtrade.exchange import market_is_active, timeframe_to_minutes
|
2022-05-25 13:31:50 +00:00
|
|
|
from freqtrade.plugins.pairlist.pairlist_helpers import dynamic_expand_pairlist, expand_pairlist
|
2020-01-26 12:17:26 +00:00
|
|
|
from freqtrade.resolvers import ExchangeResolver
|
2023-01-13 06:27:18 +00:00
|
|
|
from freqtrade.util.binance_mig import migrate_binance_futures_data
|
2020-01-26 12:17:26 +00:00
|
|
|
|
2020-09-28 17:39:41 +00:00
|
|
|
|
2020-01-26 12:17:26 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
def start_download_data(args: Dict[str, Any]) -> None:
|
|
|
|
"""
|
|
|
|
Download data (former download_backtest_data.py script)
|
|
|
|
"""
|
|
|
|
config = setup_utils_configuration(args, RunMode.UTIL_EXCHANGE)
|
|
|
|
|
2020-09-19 07:10:34 +00:00
|
|
|
if 'days' in config and 'timerange' in config:
|
|
|
|
raise OperationalException("--days and --timerange are mutually exclusive. "
|
|
|
|
"You can only specify one or the other.")
|
2020-01-26 12:17:26 +00:00
|
|
|
timerange = TimeRange()
|
|
|
|
if 'days' in config:
|
2020-10-20 18:11:38 +00:00
|
|
|
time_since = (datetime.now() - timedelta(days=config['days'])).strftime("%Y%m%d")
|
2020-01-26 12:17:26 +00:00
|
|
|
timerange = TimeRange.parse_timerange(f'{time_since}-')
|
|
|
|
|
2020-09-19 07:10:34 +00:00
|
|
|
if 'timerange' in config:
|
|
|
|
timerange = timerange.parse_timerange(config['timerange'])
|
|
|
|
|
2020-10-29 06:43:40 +00:00
|
|
|
# Remove stake-currency to skip checks which are not relevant for datadownload
|
|
|
|
config['stake_currency'] = ''
|
|
|
|
|
2020-01-26 12:17:26 +00:00
|
|
|
if 'pairs' not in config:
|
|
|
|
raise OperationalException(
|
|
|
|
"Downloading data requires a list of pairs. "
|
|
|
|
"Please check the documentation on how to configure this.")
|
|
|
|
|
|
|
|
pairs_not_available: List[str] = []
|
|
|
|
|
|
|
|
# Init exchange
|
2020-02-08 08:53:20 +00:00
|
|
|
exchange = ExchangeResolver.load_exchange(config['exchange']['name'], config, validate=False)
|
2021-10-17 14:09:56 +00:00
|
|
|
markets = [p for p, m in exchange.markets.items() if market_is_active(m)
|
|
|
|
or config.get('include_inactive')]
|
2022-05-25 13:31:50 +00:00
|
|
|
|
|
|
|
expanded_pairs = dynamic_expand_pairlist(config, markets)
|
2021-10-17 14:09:56 +00:00
|
|
|
|
2020-02-08 20:53:34 +00:00
|
|
|
# Manual validations of relevant settings
|
2021-07-17 06:21:03 +00:00
|
|
|
if not config['exchange'].get('skip_pair_validation', False):
|
2021-10-17 14:09:56 +00:00
|
|
|
exchange.validate_pairs(expanded_pairs)
|
2021-01-12 00:13:58 +00:00
|
|
|
logger.info(f"About to download pairs: {expanded_pairs}, "
|
|
|
|
f"intervals: {config['timeframes']} to {config['datadir']}")
|
|
|
|
|
2020-02-08 20:53:34 +00:00
|
|
|
for timeframe in config['timeframes']:
|
|
|
|
exchange.validate_timeframes(timeframe)
|
|
|
|
|
2020-01-26 12:17:26 +00:00
|
|
|
try:
|
|
|
|
|
|
|
|
if config.get('download_trades'):
|
2021-11-27 15:36:59 +00:00
|
|
|
if config.get('trading_mode') == 'futures':
|
|
|
|
raise OperationalException("Trade download not supported for futures.")
|
2020-01-26 12:17:26 +00:00
|
|
|
pairs_not_available = refresh_backtest_trades_data(
|
2021-01-12 00:13:58 +00:00
|
|
|
exchange, pairs=expanded_pairs, datadir=config['datadir'],
|
2021-04-22 07:07:13 +00:00
|
|
|
timerange=timerange, new_pairs_days=config['new_pairs_days'],
|
|
|
|
erase=bool(config.get('erase')), data_format=config['dataformat_trades'])
|
2020-01-26 12:17:26 +00:00
|
|
|
|
|
|
|
# Convert downloaded trade data to different timeframes
|
|
|
|
convert_trades_to_ohlcv(
|
2021-01-12 00:13:58 +00:00
|
|
|
pairs=expanded_pairs, timeframes=config['timeframes'],
|
2020-08-26 18:52:09 +00:00
|
|
|
datadir=config['datadir'], timerange=timerange, erase=bool(config.get('erase')),
|
2020-01-26 19:31:13 +00:00
|
|
|
data_format_ohlcv=config['dataformat_ohlcv'],
|
|
|
|
data_format_trades=config['dataformat_trades'],
|
2021-01-12 00:13:58 +00:00
|
|
|
)
|
2020-01-26 12:17:26 +00:00
|
|
|
else:
|
2022-08-21 15:48:13 +00:00
|
|
|
if not exchange.get_option('ohlcv_has_history', True):
|
2022-05-14 07:10:38 +00:00
|
|
|
raise OperationalException(
|
|
|
|
f"Historic klines not available for {exchange.name}. "
|
|
|
|
"Please use `--dl-trades` instead for this exchange "
|
|
|
|
"(will unfortunately take a long time)."
|
|
|
|
)
|
2023-01-13 06:27:18 +00:00
|
|
|
migrate_binance_futures_data(config)
|
2020-01-26 12:17:26 +00:00
|
|
|
pairs_not_available = refresh_backtest_ohlcv_data(
|
2021-01-12 00:13:58 +00:00
|
|
|
exchange, pairs=expanded_pairs, timeframes=config['timeframes'],
|
2021-04-22 07:07:13 +00:00
|
|
|
datadir=config['datadir'], timerange=timerange,
|
|
|
|
new_pairs_days=config['new_pairs_days'],
|
2021-12-03 13:43:49 +00:00
|
|
|
erase=bool(config.get('erase')), data_format=config['dataformat_ohlcv'],
|
|
|
|
trading_mode=config.get('trading_mode', 'spot'),
|
2022-04-30 15:24:57 +00:00
|
|
|
prepend=config.get('prepend_data', False)
|
2022-02-12 22:10:21 +00:00
|
|
|
)
|
2020-01-26 12:17:26 +00:00
|
|
|
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
sys.exit("SIGINT received, aborting ...")
|
|
|
|
|
|
|
|
finally:
|
|
|
|
if pairs_not_available:
|
|
|
|
logger.info(f"Pairs [{','.join(pairs_not_available)}] not available "
|
|
|
|
f"on exchange {exchange.name}.")
|
2020-01-26 19:31:13 +00:00
|
|
|
|
|
|
|
|
2021-09-29 14:50:05 +00:00
|
|
|
def start_convert_trades(args: Dict[str, Any]) -> None:
|
|
|
|
|
|
|
|
config = setup_utils_configuration(args, RunMode.UTIL_EXCHANGE)
|
|
|
|
|
|
|
|
timerange = TimeRange()
|
|
|
|
|
|
|
|
# Remove stake-currency to skip checks which are not relevant for datadownload
|
|
|
|
config['stake_currency'] = ''
|
|
|
|
|
|
|
|
if 'pairs' not in config:
|
|
|
|
raise OperationalException(
|
|
|
|
"Downloading data requires a list of pairs. "
|
|
|
|
"Please check the documentation on how to configure this.")
|
|
|
|
|
|
|
|
# Init exchange
|
|
|
|
exchange = ExchangeResolver.load_exchange(config['exchange']['name'], config, validate=False)
|
|
|
|
# Manual validations of relevant settings
|
|
|
|
if not config['exchange'].get('skip_pair_validation', False):
|
|
|
|
exchange.validate_pairs(config['pairs'])
|
|
|
|
expanded_pairs = expand_pairlist(config['pairs'], list(exchange.markets))
|
|
|
|
|
|
|
|
logger.info(f"About to Convert pairs: {expanded_pairs}, "
|
|
|
|
f"intervals: {config['timeframes']} to {config['datadir']}")
|
|
|
|
|
|
|
|
for timeframe in config['timeframes']:
|
|
|
|
exchange.validate_timeframes(timeframe)
|
|
|
|
# Convert downloaded trade data to different timeframes
|
|
|
|
convert_trades_to_ohlcv(
|
|
|
|
pairs=expanded_pairs, timeframes=config['timeframes'],
|
|
|
|
datadir=config['datadir'], timerange=timerange, erase=bool(config.get('erase')),
|
|
|
|
data_format_ohlcv=config['dataformat_ohlcv'],
|
|
|
|
data_format_trades=config['dataformat_trades'],
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2020-01-26 19:31:13 +00:00
|
|
|
def start_convert_data(args: Dict[str, Any], ohlcv: bool = True) -> None:
|
|
|
|
"""
|
|
|
|
Convert data from one format to another
|
|
|
|
"""
|
|
|
|
config = setup_utils_configuration(args, RunMode.UTIL_NO_EXCHANGE)
|
|
|
|
if ohlcv:
|
2023-01-13 06:27:18 +00:00
|
|
|
migrate_binance_futures_data(config)
|
2021-12-05 09:26:00 +00:00
|
|
|
candle_types = [CandleType.from_string(ct) for ct in config.get('candle_types', ['spot'])]
|
|
|
|
for candle_type in candle_types:
|
|
|
|
convert_ohlcv_format(config,
|
|
|
|
convert_from=args['format_from'], convert_to=args['format_to'],
|
|
|
|
erase=args['erase'], candle_type=candle_type)
|
2020-01-26 19:31:13 +00:00
|
|
|
else:
|
|
|
|
convert_trades_format(config,
|
|
|
|
convert_from=args['format_from'], convert_to=args['format_to'],
|
|
|
|
erase=args['erase'])
|
2020-07-12 07:57:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
def start_list_data(args: Dict[str, Any]) -> None:
|
|
|
|
"""
|
|
|
|
List available backtest data
|
|
|
|
"""
|
|
|
|
|
|
|
|
config = setup_utils_configuration(args, RunMode.UTIL_NO_EXCHANGE)
|
|
|
|
|
|
|
|
from tabulate import tabulate
|
2020-09-28 17:39:41 +00:00
|
|
|
|
|
|
|
from freqtrade.data.history.idatahandler import get_datahandler
|
2020-07-12 08:23:09 +00:00
|
|
|
dhc = get_datahandler(config['datadir'], config['dataformat_ohlcv'])
|
|
|
|
|
2022-03-03 06:06:13 +00:00
|
|
|
paircombs = dhc.ohlcv_get_available_data(
|
|
|
|
config['datadir'],
|
|
|
|
config.get('trading_mode', TradingMode.SPOT)
|
|
|
|
)
|
2020-07-12 07:57:00 +00:00
|
|
|
|
2020-07-14 04:55:34 +00:00
|
|
|
if args['pairs']:
|
|
|
|
paircombs = [comb for comb in paircombs if comb[0] in args['pairs']]
|
|
|
|
|
2020-07-12 07:57:00 +00:00
|
|
|
print(f"Found {len(paircombs)} pair / timeframe combinations.")
|
2022-08-19 11:44:31 +00:00
|
|
|
if not config.get('show_timerange'):
|
|
|
|
groupedpair = defaultdict(list)
|
|
|
|
for pair, timeframe, candle_type in sorted(
|
|
|
|
paircombs,
|
|
|
|
key=lambda x: (x[0], timeframe_to_minutes(x[1]), x[2])
|
|
|
|
):
|
|
|
|
groupedpair[(pair, candle_type)].append(timeframe)
|
|
|
|
|
|
|
|
if groupedpair:
|
|
|
|
print(tabulate([
|
|
|
|
(pair, ', '.join(timeframes), candle_type)
|
|
|
|
for (pair, candle_type), timeframes in groupedpair.items()
|
|
|
|
],
|
|
|
|
headers=("Pair", "Timeframe", "Type"),
|
|
|
|
tablefmt='psql', stralign='right'))
|
|
|
|
else:
|
|
|
|
paircombs1 = [(
|
|
|
|
pair, timeframe, candle_type,
|
|
|
|
*dhc.ohlcv_data_min_max(pair, timeframe, candle_type)
|
|
|
|
) for pair, timeframe, candle_type in paircombs]
|
2021-11-21 04:46:47 +00:00
|
|
|
print(tabulate([
|
2022-08-19 11:44:31 +00:00
|
|
|
(pair, timeframe, candle_type,
|
|
|
|
start.strftime(DATETIME_PRINT_FORMAT),
|
|
|
|
end.strftime(DATETIME_PRINT_FORMAT))
|
|
|
|
for pair, timeframe, candle_type, start, end in paircombs1
|
|
|
|
],
|
|
|
|
headers=("Pair", "Timeframe", "Type", 'From', 'To'),
|
2021-11-21 04:46:47 +00:00
|
|
|
tablefmt='psql', stralign='right'))
|