市場指數訂閱
資訊
- 此介面推送延遲為:5000ms
市場指數訂閱
- 方法:
index.subscribe
- 參數:
參數名 | 是否必須 | 類型 | 說明 |
---|---|---|---|
market_list | true | []string | 市場名稱列表 |
- 範例:
// 訂閱單一市集
{
"method": "index.subscribe",
"params": {"market_list": ["BTCUSDT"]},
"id": 1
}
// 訂閱多個市場
{
"method": "index.subscribe",
"params": {"market_list": ["BTCUSDT", "ETHUSDT"]},
"id": 1
}
市場指數價格推播
- 方法:
index.update
- 參數:
參數名 | 類型 | 說明 |
---|---|---|
market | string | 市場名 |
index_price | string | 指數價格 |
- 範例
{
"method": "index.update",
"data": {
"market": "BTCUSDT",
"index_price": "40000.91"
},
"id": null
}
取消指數價格訂閱
- 方法:
index.unsubscribe
參數名 | 是否必須 | 類型 | 說明 |
---|---|---|---|
market_list | true | []string | 市場名列表,如果為空列表則全部取消訂閱 |
- 範例:
// 取消單一市場的訂閱
{
"method": "index.unsubscribe",
"params": {"market_list": ["ETHUSDT"]},
"id": 1
}
// 取消多個市場的訂閱
{
"method": "index.unsubscribe",
"params": {"market_list": ["BTCUSDT", "ETHUSDT"]},
"id": 1
}
//取消所有市場的訂閱
{
"method": "index.unsubscribe",
"params": {"market_list": []},
"id": 1
}