We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74067d4 commit 3b5b8bdCopy full SHA for 3b5b8bd
freqtrade/exchange/bybit.py
@@ -1,8 +1,5 @@
1
-"""Bybit exchange subclass"""
2
-
3
import logging
4
from datetime import datetime, timedelta
5
-from typing import Any
6
7
import ccxt
8
@@ -79,11 +76,6 @@ def _ccxt_config(self) -> dict:
79
76
config.update(super()._ccxt_config)
80
77
return config
81
78
82
- def market_is_future(self, market: dict[str, Any]) -> bool:
83
- main = super().market_is_future(market)
84
- # For ByBit, we'll only support USDT markets for now.
85
- return main and market["settle"] == "USDT"
86
87
@retrier
88
def additional_exchange_init(self) -> None:
89
"""
0 commit comments