跳到主要内容

Top Trader Long/Short Ratio (Positions)

Type: NONE

Weight: 1

GET /futures/data/topLongShortPositionRatio

Long/short ratio of the top 20 % of accounts by position size, weighted by USD notional. Public endpoint: no X-MBX-APIKEY, timestamp or signature required.

Request

GET /futures/data/topLongShortPositionRatio?symbol=BTCUSDT

Query params

NameTypeRequiredDefaultNotes
symbolstringyes
periodstringno5mIgnored — only the latest value is computed.
limitintegerno30Effectively 1.
startTime / endTimelongnoIgnored.

Response — 200

[
{
"symbol": "BTCUSDT",
"longShortRatio": "1.2500",
"longAccount": "0.5556",
"shortAccount": "0.4444",
"timestamp": "1714261234567"
}
]

Computed live from open positions: accounts are ranked by size_in_usd, the top quintile (NTILE(5) = 1) is taken, and the long/short USD notional is compared. Only the latest point is returned — there is no time series yet.