2022-08-26 16:51:42 +00:00
|
|
|
import logging
|
|
|
|
from datetime import datetime, timezone
|
|
|
|
|
|
|
|
from freqtrade.configuration import TimeRange
|
2022-08-26 13:30:28 +00:00
|
|
|
from freqtrade.data.dataprovider import DataProvider
|
|
|
|
from freqtrade.data.history.history_utils import refresh_backtest_ohlcv_data
|
|
|
|
from freqtrade.exceptions import OperationalException
|
2022-08-26 16:51:42 +00:00
|
|
|
from freqtrade.exchange import timeframe_to_seconds
|
|
|
|
from freqtrade.exchange.exchange import market_is_active
|
|
|
|
from freqtrade.plugins.pairlist.pairlist_helpers import dynamic_expand_pairlist
|
|
|
|
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
2022-08-26 13:30:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
def download_all_data_for_training(dp: DataProvider, config: dict) -> None:
|
|
|
|
"""
|
|
|
|
Called only once upon start of bot to download the necessary data for
|
2022-08-26 16:51:42 +00:00
|
|
|
populating indicators and training the model.
|
2022-08-26 13:30:28 +00:00
|
|
|
:param timerange: TimeRange = The full data timerange for populating the indicators
|
|
|
|
and training the model.
|
|
|
|
:param dp: DataProvider instance attached to the strategy
|
|
|
|
"""
|
|
|
|
|
2022-08-31 10:26:47 +00:00
|
|
|
if dp._exchange is None:
|
2022-08-26 13:30:28 +00:00
|
|
|
raise OperationalException('No exchange object found.')
|
2022-08-31 10:26:47 +00:00
|
|
|
markets = [p for p, m in dp._exchange.markets.items() if market_is_active(m)
|
|
|
|
or config.get('include_inactive')]
|
2022-08-26 13:30:28 +00:00
|
|
|
|
|
|
|
all_pairs = dynamic_expand_pairlist(config, markets)
|
|
|
|
|
2022-08-26 16:51:42 +00:00
|
|
|
timerange = get_required_data_timerange(config)
|
|
|
|
|
|
|
|
new_pairs_days = int((timerange.stopts - timerange.startts) / 86400)
|
2022-08-31 10:26:47 +00:00
|
|
|
|
2022-08-26 16:51:42 +00:00
|
|
|
refresh_backtest_ohlcv_data(
|
|
|
|
dp._exchange,
|
|
|
|
pairs=all_pairs,
|
|
|
|
timeframes=config["freqai"]["feature_parameters"].get("include_timeframes"),
|
|
|
|
datadir=config["datadir"],
|
|
|
|
timerange=timerange,
|
|
|
|
new_pairs_days=new_pairs_days,
|
|
|
|
erase=False,
|
|
|
|
data_format=config.get("dataformat_ohlcv", "json"),
|
|
|
|
trading_mode=config.get("trading_mode", "spot"),
|
|
|
|
prepend=config.get("prepend_data", False),
|
|
|
|
)
|
|
|
|
|
2022-08-26 13:30:28 +00:00
|
|
|
|
2022-08-26 16:51:42 +00:00
|
|
|
def get_required_data_timerange(
|
|
|
|
config: dict
|
|
|
|
) -> TimeRange:
|
|
|
|
"""
|
|
|
|
Used to compute the required data download time range
|
|
|
|
for auto data-download in FreqAI
|
|
|
|
"""
|
2022-08-26 13:30:28 +00:00
|
|
|
time = datetime.now(tz=timezone.utc).timestamp()
|
2022-08-26 16:51:42 +00:00
|
|
|
|
|
|
|
timeframes = config["freqai"]["feature_parameters"].get("include_timeframes")
|
|
|
|
|
|
|
|
max_tf_seconds = 0
|
|
|
|
for tf in timeframes:
|
|
|
|
secs = timeframe_to_seconds(tf)
|
|
|
|
if secs > max_tf_seconds:
|
|
|
|
max_tf_seconds = secs
|
|
|
|
|
|
|
|
startup_candles = config.get('startup_candle_count', 0)
|
|
|
|
indicator_periods = config["freqai"]["feature_parameters"]["indicator_periods_candles"]
|
|
|
|
|
|
|
|
# factor the max_period as a factor of safety.
|
|
|
|
max_period = int(max(startup_candles, max(indicator_periods)) * 1.5)
|
|
|
|
config['startup_candle_count'] = max_period
|
|
|
|
logger.info(f'FreqAI auto-downloader using {max_period} startup candles.')
|
|
|
|
|
|
|
|
additional_seconds = max_period * max_tf_seconds
|
|
|
|
|
2022-08-31 10:28:31 +00:00
|
|
|
startts = int(
|
2022-08-26 16:51:42 +00:00
|
|
|
time
|
|
|
|
- config["freqai"].get("train_period_days", 0) * 86400
|
|
|
|
- additional_seconds
|
|
|
|
)
|
2022-08-31 10:28:31 +00:00
|
|
|
stopts = int(time)
|
|
|
|
data_load_timerange = TimeRange('date', 'date', startts, stopts)
|
2022-08-26 16:51:42 +00:00
|
|
|
|
|
|
|
return data_load_timerange
|
|
|
|
|
|
|
|
|
|
|
|
# Keep below for when we wish to download heterogeneously lengthed data for FreqAI.
|
|
|
|
# def download_all_data_for_training(dp: DataProvider, config: dict) -> None:
|
|
|
|
# """
|
|
|
|
# Called only once upon start of bot to download the necessary data for
|
|
|
|
# populating indicators and training a FreqAI model.
|
|
|
|
# :param timerange: TimeRange = The full data timerange for populating the indicators
|
|
|
|
# and training the model.
|
|
|
|
# :param dp: DataProvider instance attached to the strategy
|
|
|
|
# """
|
|
|
|
|
|
|
|
# if dp._exchange is not None:
|
|
|
|
# markets = [p for p, m in dp._exchange.markets.items() if market_is_active(m)
|
|
|
|
# or config.get('include_inactive')]
|
|
|
|
# else:
|
|
|
|
# # This should not occur:
|
|
|
|
# raise OperationalException('No exchange object found.')
|
|
|
|
|
|
|
|
# all_pairs = dynamic_expand_pairlist(config, markets)
|
|
|
|
|
|
|
|
# if not dp._exchange:
|
|
|
|
# # Not realistic - this is only called in live mode.
|
|
|
|
# raise OperationalException("Dataprovider did not have an exchange attached.")
|
|
|
|
|
|
|
|
# time = datetime.now(tz=timezone.utc).timestamp()
|
2022-08-26 13:30:28 +00:00
|
|
|
|
2022-08-26 16:51:42 +00:00
|
|
|
# for tf in config["freqai"]["feature_parameters"].get("include_timeframes"):
|
|
|
|
# timerange = TimeRange()
|
|
|
|
# timerange.startts = int(time)
|
|
|
|
# timerange.stopts = int(time)
|
|
|
|
# startup_candles = dp.get_required_startup(str(tf))
|
|
|
|
# tf_seconds = timeframe_to_seconds(str(tf))
|
|
|
|
# timerange.subtract_start(tf_seconds * startup_candles)
|
|
|
|
# new_pairs_days = int((timerange.stopts - timerange.startts) / 86400)
|
|
|
|
# # FIXME: now that we are looping on `refresh_backtest_ohlcv_data`, the function
|
|
|
|
# # redownloads the funding rate for each pair.
|
|
|
|
# refresh_backtest_ohlcv_data(
|
|
|
|
# dp._exchange,
|
|
|
|
# pairs=all_pairs,
|
|
|
|
# timeframes=[tf],
|
|
|
|
# datadir=config["datadir"],
|
|
|
|
# timerange=timerange,
|
|
|
|
# new_pairs_days=new_pairs_days,
|
|
|
|
# erase=False,
|
|
|
|
# data_format=config.get("dataformat_ohlcv", "json"),
|
|
|
|
# trading_mode=config.get("trading_mode", "spot"),
|
|
|
|
# prepend=config.get("prepend_data", False),
|
|
|
|
# )
|