download data homogeneously across timeframes

This commit is contained in:
robcaulk
2022-08-26 18:51:42 +02:00
parent e7261cf515
commit bb3523f383
2 changed files with 113 additions and 33 deletions

View File

@@ -157,12 +157,10 @@ class IStrategy(ABC, HyperStrategyMixin):
if self.config.get('runmode') in (RunMode.DRY_RUN, RunMode.LIVE):
logger.info(
"Downloading all training data for all pairs in whitelist and "
"corr_pairlist, this may take a while if you do not have the "
"data saved"
"corr_pairlist, this may take a while if the data is not "
"already on disk."
)
# data_load_timerange = get_required_data_timerange(self.config)
download_all_data_for_training(self.dp, self.config)
else:
# Gracious failures if freqAI is disabled but "start" is called.
class DummyClass():