2020-12-20 18:59:46 +00:00
|
|
|
""" Bybit exchange subclass """
|
|
|
|
import logging
|
2021-10-06 07:39:02 +00:00
|
|
|
from typing import Dict, List, Tuple
|
2020-12-20 18:59:46 +00:00
|
|
|
|
2022-02-01 18:53:38 +00:00
|
|
|
from freqtrade.enums import MarginMode, TradingMode
|
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-11-13 11:00:47 +00:00
|
|
|
"ccxt_futures_name": "linear"
|
2020-12-20 18:59:46 +00:00
|
|
|
}
|
2021-10-01 02:18:56 +00:00
|
|
|
|
2022-02-01 18:53:38 +00:00
|
|
|
_supported_trading_mode_margin_pairs: List[Tuple[TradingMode, MarginMode]] = [
|
2021-10-06 07:39:02 +00:00
|
|
|
# TradingMode.SPOT always supported and not required in this list
|
2022-02-01 18:53:38 +00:00
|
|
|
# (TradingMode.FUTURES, MarginMode.CROSS),
|
|
|
|
# (TradingMode.FUTURES, MarginMode.ISOLATED)
|
2021-10-06 07:39:02 +00:00
|
|
|
]
|
2022-05-27 08:18:04 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def _ccxt_config(self) -> Dict:
|
|
|
|
# Parameters to add directly to ccxt sync/async initialization.
|
|
|
|
# ccxt defaults to swap mode.
|
|
|
|
config = {}
|
|
|
|
if self.trading_mode == TradingMode.SPOT:
|
|
|
|
config.update({
|
|
|
|
"options": {
|
|
|
|
"defaultType": "spot"
|
|
|
|
}
|
|
|
|
})
|
|
|
|
config.update(super()._ccxt_config)
|
|
|
|
return config
|