tickstreamdocs

DOCS

Symbols & markets

50 of the most-traded futures across CME, CBOT, NYMEX, COMEX, EUREX — and any other symbol on request.

You reference an instrument by its short symbol (the front-month continuous contract by default). These are the 50 most-traded markets we carry across CME · CBOT · NYMEX · COMEX · EUREX — equity indices, rates, energy, metals and FX.

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

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.