2021-05-01 15:29:53 +00:00
|
|
|
import logging
|
2021-11-13 12:21:17 +00:00
|
|
|
from typing import Dict
|
2021-05-01 15:29:53 +00:00
|
|
|
|
|
|
|
from freqtrade.exchange import Exchange
|
|
|
|
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class Hitbtc(Exchange):
|
|
|
|
"""
|
|
|
|
Hitbtc 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.
|
|
|
|
"""
|
|
|
|
|
|
|
|
_ft_has: Dict = {
|
|
|
|
"ohlcv_candle_limit": 1000,
|
|
|
|
"ohlcv_params": {"sort": "DESC"}
|
|
|
|
}
|