Add fix for bibox exchange
This commit is contained in:
21
freqtrade/exchange/bibox.py
Normal file
21
freqtrade/exchange/bibox.py
Normal file
@@ -0,0 +1,21 @@
|
||||
""" Bibox exchange subclass """
|
||||
import logging
|
||||
from typing import Dict
|
||||
|
||||
from freqtrade.exchange import Exchange
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class Bibox(Exchange):
|
||||
"""
|
||||
Bibox exchange class. Contains adjustments needed for Freqtrade to work
|
||||
with this exchange.
|
||||
|
||||
Please note that this exchange is not included in the list of exchanges
|
||||
officially supported by the Freqtrade development team. So some features
|
||||
may still not work as expected.
|
||||
"""
|
||||
|
||||
# Adjust ccxt exchange API metadata info
|
||||
_ccxt_has: Dict = {"fetchCurrencies": False}
|
||||
Reference in New Issue
Block a user