Add huobi exchange class
This commit is contained in:
19
freqtrade/exchange/huobi.py
Normal file
19
freqtrade/exchange/huobi.py
Normal 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,
|
||||
}
|
||||
Reference in New Issue
Block a user