From 19fcbc92a7d0fe4570f34c9ed5cdb9394373aa15 Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 29 Oct 2020 07:43:40 +0100 Subject: [PATCH] Remove stake-currency for download-data - it's not needed --- freqtrade/commands/data_commands.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/freqtrade/commands/data_commands.py b/freqtrade/commands/data_commands.py index 7102eee38..df4c52de0 100644 --- a/freqtrade/commands/data_commands.py +++ b/freqtrade/commands/data_commands.py @@ -35,6 +35,9 @@ def start_download_data(args: Dict[str, Any]) -> None: if 'timerange' in config: timerange = timerange.parse_timerange(config['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. "