From 3b5b8bd007758f857340c2a53b417327a6e39944 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 19 Jul 2025 15:34:27 +0200 Subject: [PATCH] feat: enable USDC futures for bybit closes #11809 --- freqtrade/exchange/bybit.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/freqtrade/exchange/bybit.py b/freqtrade/exchange/bybit.py index 8d734f53a..a56be5783 100644 --- a/freqtrade/exchange/bybit.py +++ b/freqtrade/exchange/bybit.py @@ -1,8 +1,5 @@ -"""Bybit exchange subclass""" - import logging from datetime import datetime, timedelta -from typing import Any import ccxt @@ -79,11 +76,6 @@ class Bybit(Exchange): config.update(super()._ccxt_config) return config - def market_is_future(self, market: dict[str, Any]) -> bool: - main = super().market_is_future(market) - # For ByBit, we'll only support USDT markets for now. - return main and market["settle"] == "USDT" - @retrier def additional_exchange_init(self) -> None: """