Skip to content

Supported Markets

The engine exposes 12 venues for a total of ~526 symbols through a single set of endpoints. Canonical symbols are all-uppercase with no separators.

Overview

Asset classVenueSymbolsData modeSupported intervals
Cryptobinance:spot70WebSocket real-time + REST fallback1m 5m 15m 1h 4h 1d
binance:perp70WebSocket real-time + REST fallback1m 5m 15m 1h 4h 1d
bybit:spot70WebSocket real-time + REST fallback1m 5m 15m 1h 4h 1d
bybit:perp70WebSocket real-time + REST fallback1m 5m 15m 1h 4h 1d
okx:spot70WebSocket real-time + REST fallback1m 5m 15m 1h 4h 1d
okx:perp50WebSocket real-time + REST fallback1m 5m 15m 1h 4h 1d
hyperliquid:perp20WebSocket real-time + REST fallback1m 5m 15m 1h 4h 1d
A-sharesstock:cn32Forwarded (Tencent Finance)1m 5m 15m 30m 1h 1d
Hong Kongstock:hk20Forwarded (Yahoo Finance)1h 1d
US stocksstock:us37Forwarded (Yahoo Finance)1h 1d
Forexforex:spot10Forwarded (Yahoo Finance)1h 1d
Commoditiescommodity:futures7Forwarded (Yahoo Finance)1h 1d

Crypto venues use real-time WebSocket sync with a local cache. A-shares go through a "forward" mode via Tencent Finance. HK stocks, US stocks, forex, and commodities use Yahoo Finance as the upstream data source — each request fetches fresh data, so there is no cold-start.

Query the live list

Symbol lists may change (we add hot tickers and remove illiquid ones). Before integrating, query the discovery endpoints:

bash
# All venues + WS health
curl -H "Authorization: Bearer mq_xxx" https://api.mobiusquant.ai/api/markets

# All symbols on a single venue
curl -H "Authorization: Bearer mq_xxx" \
     https://api.mobiusquant.ai/api/markets/binance/perp/symbols

Canonical symbol rules

VenueFormExamples
Crypto{BASE}{QUOTE}BTCUSDT, BTCUSDC, 1000PEPEUSDT
stock:cn6-digit bare code (no sh / sz / .SS suffix)600519, 000333, 300750
stock:hk5-digit with leading zero00700, 09988
stock:usBare tickerAAPL, NVDA, TSLA
forex:spot6-letter concatenationEURUSD, USDJPY, GBPUSD
commodity:futuresStandard code (all uppercase, no separators)XAUUSD, XAGUSD, WTIUSD

The engine automatically translates native venue formats to canonical:

NativeCanonical
BTC-USDT-SWAP (OKX perp)BTCUSDT
BTCPERP (Bybit USDC perp)BTCUSDC
kPEPE (Hyperliquid)1000PEPEUSDC
1000PEPEUSDT (Binance memecoin)1000PEPEUSDT (already canonical)
00700.HK00700
600519.SS600519
GC=F (Gold futures)XAUUSD

Rule of thumb: all uppercase, no separators, perp vs spot is encoded in the venue (not in the symbol).

Natural-name lookup

The engine ships with a built-in natural-language → canonical mapping. Users say "Bitcoin" or "Tencent" — the engine resolves to BTCUSDT or 00700:

bash
curl -H "Authorization: Bearer mq_xxx" \
     "https://api.mobiusquant.ai/api/symbols/search?q=bitcoin"
# → [{ "canonical": "BTCUSDT", "exchange": "binance", "market": "perp", ... }]

The search endpoint also has a smartbox fallback — it can discover ANY A-share, HK, or US stock beyond the curated list. Commodities can be discovered by Chinese name as well (e.g. "黄金" → XAUUSD).

Full mapping: GET /api/symbols/builtin.

Symbol lists per venue

For the complete enumerated symbol lists (including Chinese company names for A-shares and Hong Kong stocks), see the Chinese version at https://docs.mobiusquant.ai/zh/markets. That page is the authoritative reference and gets regenerated when the engine venue list changes.

Companion endpoints

MethodPathPurpose
GET/api/marketsAll venues + WS health
GET/api/markets/{exchange}/{market}/symbolsSymbols on one venue
GET/api/intervalsInterval-support matrix + cache depth caps
GET/api/klinesRaw OHLCV
GET/api/symbols/builtinNatural-name → canonical mapping table
GET/api/symbols/search?q=Fuzzy natural-language search (with smartbox fallback)
GET/api/healthPer-venue status (ok / degraded / dead / starting)
GET/api/derivatives/funding-ratesFunding rate history (Binance / Bybit / OKX)
GET/api/derivatives/open-interestOpen interest history (Binance)
GET/api/derivatives/long-short-ratioTop trader long/short ratio (Binance)
GET/api/derivatives/taker-ratioTaker buy/sell ratio (Binance)
GET/api/sentiment/fear-greedCrypto Fear & Greed Index

Full field-level reference: API Documentation. See also Derivatives & Sentiment for detailed endpoint documentation.

AI trading infrastructure