stable/freqtrade/exchange/huobi.py

20 lines
357 B
Python
Raw Normal View History

2022-01-14 18:39:09 +00:00
""" 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,
}