Add huobi exchange class

This commit is contained in:
Matthias
2022-01-14 19:39:09 +01:00
parent f181cdeecd
commit 2ec1a7b370
2 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
""" Huobi exchange subclass """
import logging
from typing import Dict
from freqtrade.exchange import Exchange
logger = logging.getLogger(__name__)
class Huobi(Exchange):
"""
Huobi exchange class. Contains adjustments needed for Freqtrade to work
with this exchange.
"""
_ft_has: Dict = {
"ohlcv_candle_limit": 2000,
}