查詢指數價格K線數據
查詢指數價格K線
覆蓋範圍: USDT永續 / USDC永續 / USDC交割 / 反向合約
HTTP請求
GET /v5/market/index-price-kline
請求參數
參數 | 是否必需 | 類型 | 說明 |
---|---|---|---|
category | false | string | 產品類型. linear ,inverse category 不指定時, 默認是linear |
symbol | true | string | 合約名稱 |
interval | true | string | 時間粒度. 1 ,3 ,5 ,15 ,30 ,60 ,120 ,240 ,360 ,720 ,D ,M ,W |
start | false | integer | 開始時間戳 (毫秒) |
end | false | integer | 結束時間戳 (毫秒) |
limit | false | integer | 每頁數量限制. [1 , 1000 ]. 默認: 200 |
響應參數
參數 | 類型 | 說明 |
---|---|---|
category | string | 產品類型 |
symbol | string | 合約名稱 |
list | array |
|
> list[0]: startTime | string | 蠟燭的開始時間戳 (毫秒) |
> list[1]: openPrice | string | 開始價格 |
> list[2]: highPrice | string | 最高價格 |
> list[3]: lowPrice | string | 最低價格 |
> list[4]: closePrice | string | 結束價格. 如果蠟燭尚未結束,則表示為最新成交價格 |
請求示例
- HTTP
- Python
- Go
- Java
- Node.js
GET /v5/market/index-price-kline?category=inverse&symbol=BTCUSDZ22&interval=1&start=1670601600000&end=1670608800000&limit=2 HTTP/1.1
Host: api-testnet.bybit.com
from pybit.unified_trading import HTTP
session = HTTP(testnet=True)
print(session.get_index_price_kline(
category="inverse",
symbol="BTCUSDZ22",
interval=1,
start=1670601600000,
end=1670608800000,
limit=2,
))
import (
"context"
"fmt"
bybit "github.com/wuhewuhe/bybit.go.api"
)
client := bybit.NewBybitHttpClient("", "", bybit.WithBaseURL(bybit.TESTNET))
params := map[string]interface{}{"category": "spot", "symbol": "BTCUSDT", "interval": "1"}
client.NewUtaBybitServiceWithParams(params).GetIndexPriceKline(context.Background())
import com.bybit.api.client.domain.CategoryType;
import com.bybit.api.client.domain.market.*;
import com.bybit.api.client.domain.market.request.MarketDataRequest;
import com.bybit.api.client.service.BybitApiClientFactory;
var client = BybitApiClientFactory.newInstance().newAsyncMarketDataRestClient();
var marketKLineRequest = MarketDataRequest.builder().category(CategoryType.LINEAR).symbol("BTCUSDT").marketInterval(MarketInterval.WEEKLY).build();
client.getIndexPriceLinesData(marketKLineRequest, System.out::println);
const { RestClientV5 } = require('bybit-api');
const client = new RestClientV5({
testnet: true,
});
client
.getIndexPriceKline({
category: 'inverse',
symbol: 'BTCUSDZ22',
interval: '1',
start: 1670601600000,
end: 1670608800000,
limit: 2,
})
.then((response) => {
console.log(response);
})
.catch((error) => {
console.error(error);
});
響應示例
{
"retCode": 0,
"retMsg": "OK",
"result": {
"symbol": "BTCUSDZ22",
"category": "inverse",
"list": [
[
"1670608800000",
"17167.00",
"17167.00",
"17161.90",
"17163.07"
],
[
"1670608740000",
"17166.54",
"17167.69",
"17165.42",
"17167.00"
]
]
},
"retExtInfo": {},
"time": 1672026471128
}