본문으로 건너뛰기

cex_symbol_oi_stats

Enriched OI snapshot with 1h/4h/24h change percentages and OI/24h volume ratio. Backed by the tfopeninterest taskflow's Redis hash. Best single endpoint for OI sentiment analysis.

Usage hints:

  • base is required
  • OI rising while volume flat = leveraged accumulation
  • OI/volume ratio > 1.0 indicates leverage-heavy market
  • Set currency=KRW for Korean Won denominated values

REST endpoint

GET /api/v1/cex/symbol/oi-stats — see REST reference.

Parameters

NameTypeRequiredDefaultDescriptionExample
basestringyesBase asset (e.g. BTC)"..."
exchangestringnoExchange filter — when omitted, returns every venue carrying the base"..."
currencystringnoUSDConvert *_usd fields to target currency (USD or KRW) (USD, KRW) (default: USD)"USD"

Example invocation

JSON-RPC tools/call payload:

{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "cex_symbol_oi_stats",
"arguments": {
"base": "...",
"currency": "USD"
}
}
}