2019-07-11 18:23:23 +00:00
|
|
|
import logging
|
|
|
|
from typing import Any, Dict
|
|
|
|
|
|
|
|
from freqtrade import OperationalException
|
2019-08-13 06:26:10 +00:00
|
|
|
from freqtrade.exchange import (available_exchanges, get_exchange_bad_reason,
|
2019-09-30 21:33:33 +00:00
|
|
|
is_exchange_known_ccxt, is_exchange_bad,
|
2019-08-13 06:26:10 +00:00
|
|
|
is_exchange_officially_supported)
|
2019-08-31 13:15:30 +00:00
|
|
|
from freqtrade.state import RunMode
|
2019-07-11 18:23:23 +00:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
def check_exchange(config: Dict[str, Any], check_for_bad: bool = True) -> bool:
|
|
|
|
"""
|
|
|
|
Check if the exchange name in the config file is supported by Freqtrade
|
|
|
|
:param check_for_bad: if True, check the exchange against the list of known 'bad'
|
|
|
|
exchanges
|
|
|
|
:return: False if exchange is 'bad', i.e. is known to work with the bot with
|
|
|
|
critical issues or does not work at all, crashes, etc. True otherwise.
|
|
|
|
raises an exception if the exchange if not supported by ccxt
|
|
|
|
and thus is not known for the Freqtrade at all.
|
|
|
|
"""
|
2019-08-31 13:15:30 +00:00
|
|
|
|
|
|
|
if config['runmode'] in [RunMode.PLOT] and not config.get('exchange', {}).get('name'):
|
|
|
|
# Skip checking exchange in plot mode, since it requires no exchange
|
|
|
|
return True
|
2019-07-11 18:23:23 +00:00
|
|
|
logger.info("Checking exchange...")
|
|
|
|
|
|
|
|
exchange = config.get('exchange', {}).get('name').lower()
|
2019-09-21 09:24:51 +00:00
|
|
|
if not exchange:
|
|
|
|
raise OperationalException(
|
2019-09-24 04:35:41 +00:00
|
|
|
f'This command requires a configured exchange. You should either use '
|
|
|
|
f'`--exchange <exchange_name>` or specify a configuration file via `--config`.\n'
|
2019-09-30 21:33:33 +00:00
|
|
|
f'The following exchanges are available for Freqtrade: '
|
2019-09-21 09:24:51 +00:00
|
|
|
f'{", ".join(available_exchanges())}'
|
|
|
|
)
|
|
|
|
|
2019-09-30 21:33:33 +00:00
|
|
|
if not is_exchange_known_ccxt(exchange):
|
2019-07-11 18:23:23 +00:00
|
|
|
raise OperationalException(
|
2019-09-30 21:33:33 +00:00
|
|
|
f'Exchange "{exchange}" is not known to the ccxt library '
|
2019-07-11 18:23:23 +00:00
|
|
|
f'and therefore not available for the bot.\n'
|
2019-09-30 21:33:33 +00:00
|
|
|
f'The following exchanges are available for Freqtrade: '
|
2019-07-11 18:23:23 +00:00
|
|
|
f'{", ".join(available_exchanges())}'
|
|
|
|
)
|
|
|
|
|
|
|
|
if check_for_bad and is_exchange_bad(exchange):
|
2019-08-13 06:26:10 +00:00
|
|
|
raise OperationalException(f'Exchange "{exchange}" is known to not work with the bot yet. '
|
|
|
|
f'Reason: {get_exchange_bad_reason(exchange)}')
|
2019-07-11 18:23:23 +00:00
|
|
|
|
|
|
|
if is_exchange_officially_supported(exchange):
|
|
|
|
logger.info(f'Exchange "{exchange}" is officially supported '
|
|
|
|
f'by the Freqtrade development team.')
|
|
|
|
else:
|
2019-09-30 21:33:33 +00:00
|
|
|
logger.warning(f'Exchange "{exchange}" is known to the the ccxt library, '
|
|
|
|
f'available for the bot, but not officially supported '
|
2019-07-11 18:23:23 +00:00
|
|
|
f'by the Freqtrade development team. '
|
|
|
|
f'It may work flawlessly (please report back) or have serious issues. '
|
|
|
|
f'Use it at your own discretion.')
|
|
|
|
|
|
|
|
return True
|