Skip to content

Commit 3b5b8bd

Browse files
committed
feat: enable USDC futures for bybit
closes freqtrade#11809
1 parent 74067d4 commit 3b5b8bd

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

freqtrade/exchange/bybit.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
"""Bybit exchange subclass"""
2-
31
import logging
42
from datetime import datetime, timedelta
5-
from typing import Any
63

74
import ccxt
85

@@ -79,11 +76,6 @@ def _ccxt_config(self) -> dict:
7976
config.update(super()._ccxt_config)
8077
return config
8178

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-
8779
@retrier
8880
def additional_exchange_init(self) -> None:
8981
"""

0 commit comments

Comments
 (0)