tickstreamdocs

DOCS

Symbols & markets

67 markets — the most-traded futures across CME, CBOT, NYMEX, COMEX, EUREX plus live index & ETF quotes (SPX, QQQ, SPY…). Any other symbol on request.

You reference an instrument by its short symbol (futures use the front-month continuous contract by default — it rolls automatically). We carry the most-traded futures across CME · CBOT · NYMEX · COMEX · EUREX — equity indices, rates, energy, metals and FX — plus live index & ETF quotes (SPX, NDX, VIX, SPY, QQQ, IWM …).

Futures stream real trade ticks (and Level 2 depth). ETFs stream live quotes; indices like SPX/VIX stream the live index level (an index isn't traded, so there are no trade prints — just the level). Subscribe to all of them on the same ticks channel.

need another?

We're entitled to thousands of instruments across these exchanges. Don't see what you need? Request any symbol and we'll enable it — usually within a day — and email you the moment it's live.

Equity Index

SymbolInstrumentExchange
ESE-mini S&P 500CME
NQE-mini Nasdaq-100CME
YME-mini DowCBOT
RTYE-mini Russell 2000CME
EMDE-mini S&P MidCap 400CME
MESMicro E-mini S&P 500CME
MNQMicro E-mini Nasdaq-100CME
MYMMicro E-mini DowCBOT
M2KMicro E-mini Russell 2000CME
FDAXDAXEUREX
FDXMMini-DAXEUREX
FESXEuro Stoxx 50EUREX
FSMISwiss Market IndexEUREX

Rates

SymbolInstrumentExchange
ZN10-Year T-NoteCBOT
ZB30-Year T-BondCBOT
ZF5-Year T-NoteCBOT
ZT2-Year T-NoteCBOT
UBUltra T-BondCBOT
TNUltra 10-Year T-NoteCBOT
ZQ30-Day Fed FundsCBOT
SR33-Month SOFRCME
GEEurodollarCME
FGBLEuro-BundEUREX
FGBMEuro-BoblEUREX
FGBSEuro-SchatzEUREX
FBTPEuro-BTP (Italy)EUREX
FOATEuro-OAT (France)EUREX

Energy

SymbolInstrumentExchange
CLCrude Oil (WTI)NYMEX
MCLMicro WTI Crude OilNYMEX
NGNatural Gas (Henry Hub)NYMEX
MNGMicro Henry Hub Natural GasNYMEX
RBRBOB GasolineNYMEX
HONY Harbor ULSDNYMEX
BZBrent Crude OilNYMEX
QME-mini Crude OilNYMEX

Metals

SymbolInstrumentExchange
GCGoldCOMEX
MGCMicro GoldCOMEX
SISilverCOMEX
SILSilver (1,000 oz)COMEX
HGCopperCOMEX
MHGMicro CopperCOMEX
PLPlatinumNYMEX
PAPalladiumNYMEX

FX

SymbolInstrumentExchange
6EEuro FXCME
6BBritish PoundCME
6JJapanese YenCME
6AAustralian DollarCME
6CCanadian DollarCME
6SSwiss FrancCME
6NNew Zealand DollarCME

Crypto

SymbolInstrumentExchange
BTCBitcoinCME
MBTMicro BitcoinCME
ETHEtherCME
METMicro EtherCME

Indices & ETFs

SymbolInstrumentExchange
SPXS&P 500 IndexCBOE
NDXNasdaq-100 IndexNASDAQ
RUTRussell 2000 IndexCBOE
VIXCboe Volatility IndexCBOE
SPYSPDR S&P 500 ETFARCA
QQQInvesco QQQ (Nasdaq-100)NASDAQ
IWMiShares Russell 2000 ETFARCA
DIASPDR Dow Jones ETFARCA
GLDSPDR Gold SharesARCA
SLViShares Silver TrustARCA
USOUnited States Oil FundARCA
UNGUnited States Natural GasARCA
TLTiShares 20+ Yr TreasuryNASDAQ

List symbols programmatically

Fetch the live, authoritative catalog (symbols, names, exchanges and the plan each requires) over REST:

curl https://api.tick-stream.xyz/v1/symbols \
  -H "Authorization: Bearer sk_live_…"
from tickstream import Client
for s in Client("sk_live_…").symbols():
    print(s.symbol, s.name, s.exchange)

Specifying contracts

By default a symbol resolves to the front-month continuous contract and rolls automatically. To pin a specific expiry, append the contract code, e.g. ESZ5 (Dec 2025).

Requesting a market

Every exchange above (CME, CBOT, NYMEX, COMEX, EUREX) carries far more than the 50 listed here — adding one is just an email. Tell us the symbol and exchange and we'll turn it on:

📨 Request a market →

tip

Building with an LLM? Your agent can request markets too — see LLM & MCP.