Hi all, I'm trying to retrieve historical data for less common cryptocurrency assets using QuantConnect's QuantBook, but I'm struggling to get meaningful results. I'm looking for help understanding which markets and symbol formats support small-cap tokens.

For example, I'm trying to pull data for SHIBUSDT via Binance Spot (I also tried via Babybit and Coinbase).

 Here's the code I used:
symbol = qb.AddCrypto("SHIBUSDT", Resolution.Hour, Market.Binance).Symbol
df = qb.History(TradeBar, symbol, 50, Resolution.Hour)
print(df.tail())

Output:
Empty DataFrame
Columns: []
Index: []
 

I also tried fetching QuoteBar and Tick data for the same symbol, but those were empty too.

Does anyone know a reliable way to access price data for these smaller tokens (like PEPE, SHIB, SATS, etc.)? Is there a preferred market or symbol format I should be using — or maybe a specific data source within QuantConnect that covers these?

Any tips or insights would be highly appreciated! Thanks in advance. 🙏