Option to skip exchange validation, required to backtest pairs that are not live on the exchange any more.

This commit is contained in:
Daniel Goller 2020-11-09 08:37:38 +00:00
parent 13da8f9368
commit 916776bb53

View File

@ -115,7 +115,7 @@ class Exchange:
logger.info('Using Exchange "%s"', self.name)
if validate:
if validate and not exchange_config.get('skip_validation'):
# Check if timeframe is available
self.validate_timeframes(config.get('timeframe'))