diff --git a/freqtrade/utils.py b/freqtrade/utils.py index 3aadaa893..f4e9c8a3c 100644 --- a/freqtrade/utils.py +++ b/freqtrade/utils.py @@ -147,7 +147,7 @@ def start_list_markets(args: Dict[str, Any], pairs_only: bool = False) -> None: config = setup_utils_configuration(args, RunMode.OTHER) # Init exchange - exchange = ExchangeResolver(config['exchange']['name'], config).exchange + exchange = ExchangeResolver(config['exchange']['name'], config, validate=False).exchange # By default only active pairs/markets are to be shown active_only = not args.get('list_pairs_all', False)