2020-12-20 18:59:46 +00:00
|
|
|
""" Bybit exchange subclass """
|
|
|
|
import logging
|
2021-10-01 02:18:56 +00:00
|
|
|
from typing import Dict, List
|
2020-12-20 18:59:46 +00:00
|
|
|
|
|
|
|
from freqtrade.exchange import Exchange
|
|
|
|
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class Bybit(Exchange):
|
|
|
|
"""
|
|
|
|
Bybit 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": 200,
|
|
|
|
}
|
2021-10-01 02:18:56 +00:00
|
|
|
|
|
|
|
funding_fee_times: List[int] = [0, 8, 16] # hours of the day
|