diff --git a/QuantConnect.BybitBrokerage.ToolBox/BybitExchangeInfoDownloader.cs b/QuantConnect.BybitBrokerage.ToolBox/BybitExchangeInfoDownloader.cs index 6a35199..26f7908 100644 --- a/QuantConnect.BybitBrokerage.ToolBox/BybitExchangeInfoDownloader.cs +++ b/QuantConnect.BybitBrokerage.ToolBox/BybitExchangeInfoDownloader.cs @@ -66,6 +66,13 @@ public IEnumerable Get() // Skip USDC perp and future contracts for now, they'll need some more implementation continue; } + + if (symbol.InstrumentInfo.ContractType == "InverseFutures") + { + // Skip crypto futures that are not perpetual + continue; + } + yield return GetInstrumentInfoString(symbol.InstrumentInfo, symbol.SecurityType); } }