跳轉到內容

期權成交量

獲取今日認購/認沽期權成交量快照,包含總量、未平倉量和認沽/認購比率。

CLI
longbridge option volume AAPL.US
longbridge option volume TSLA.US

Parameters

SDK 方法參數。

NameTypeRequiredDescription
symbolstringYESUS stock symbol, e.g. AAPL.US, TSLA.US

Request Example

Response

Response Example

json
{
  "code": 0,
  "message": "success",
  "data": {
    "symbol": "AAPL.US",
    "call_volume": 284512,
    "put_volume": 195830,
    "call_open_interest": 1824500,
    "put_open_interest": 1532100,
    "pc_vol": "0.6886",
    "pc_oi": "0.8398"
  }
}

Response Status

StatusDescriptionSchema
200Successoption_volume_rsp
400Bad requestNone

Schemas

option_volume_rsp

NameTypeRequiredDescription
symbolstringtrueSecurity symbol
call_volumeint64trueTotal call volume for today
put_volumeint64trueTotal put volume for today
call_open_interestint64trueTotal call open interest
put_open_interestint64trueTotal put open interest
pc_volstringtruePut/call volume ratio
pc_oistringtruePut/call open interest ratio