Sort supported exchanges alphabetically
This commit is contained in:
		| @@ -30,13 +30,13 @@ hesitate to read the source code and understand the mechanism of this bot. | ||||
|  | ||||
| Please read the [exchange specific notes](docs/exchanges.md) to learn about eventual, special configurations needed for each exchange. | ||||
|  | ||||
| - [X] [Binance](https://www.binance.com/) ([*Note for binance users](docs/exchanges.md#binance-blacklist)) | ||||
| - [X] [Binance](https://www.binance.com/) | ||||
| - [X] [Bittrex](https://bittrex.com/) | ||||
| - [X] [FTX](https://ftx.com) | ||||
| - [X] [Gate.io](https://www.gate.io/ref/6266643) | ||||
| - [X] [Huobi](http://huobi.com/) | ||||
| - [X] [Kraken](https://kraken.com/) | ||||
| - [X] [OKX](https://okx.com/) (Former OKEX) | ||||
| - [X] [Huobi](http://huobi.com/) | ||||
| - [ ] [potentially many others](https://github.com/ccxt/ccxt/). _(We cannot guarantee they will work)_ | ||||
|  | ||||
| ### Community tested | ||||
|   | ||||
| @@ -42,13 +42,13 @@ Freqtrade is a free and open source crypto trading bot written in Python. It is | ||||
|  | ||||
| Please read the [exchange specific notes](exchanges.md) to learn about eventual, special configurations needed for each exchange. | ||||
|  | ||||
| - [X] [Binance](https://www.binance.com/) ([*Note for binance users](exchanges.md#binance-blacklist)) | ||||
| - [X] [Binance](https://www.binance.com/) | ||||
| - [X] [Bittrex](https://bittrex.com/) | ||||
| - [X] [FTX](https://ftx.com) | ||||
| - [X] [Gate.io](https://www.gate.io/ref/6266643) | ||||
| - [X] [Huobi](http://huobi.com/) | ||||
| - [X] [Kraken](https://kraken.com/) | ||||
| - [X] [OKX](https://okx.com/) (Former OKEX) | ||||
| - [X] [Huobi](http://huobi.com/) | ||||
| - [ ] [potentially many others through <img alt="ccxt" width="30px" src="assets/ccxt-logo.svg" />](https://github.com/ccxt/ccxt/). _(We cannot guarantee they will work)_ | ||||
|  | ||||
| ### Community tested | ||||
|   | ||||
| @@ -1664,7 +1664,7 @@ def is_exchange_known_ccxt(exchange_name: str, ccxt_module: CcxtModuleType = Non | ||||
|  | ||||
|  | ||||
| def is_exchange_officially_supported(exchange_name: str) -> bool: | ||||
|     return exchange_name in ['bittrex', 'binance', 'kraken', 'ftx', 'gateio', 'okx'] | ||||
|     return exchange_name in ['binance', 'bittrex', 'ftx', 'gateio', 'huobi', 'kraken', 'okx'] | ||||
|  | ||||
|  | ||||
| def ccxt_exchanges(ccxt_module: CcxtModuleType = None) -> List[str]: | ||||
|   | ||||
		Reference in New Issue
	
	Block a user