binance 历史 klines websocket 中的 header 列名称是什么?

What are the column header names in from historical klines websocket in binance?

我正在使用 'get_historical_klines' (http://python-binance.readthedocs.io/en/latest/binance.html#binance.client.Client.get_historical_klines)

从 binance 检索历史数据

我返回的文档是 OHLCV,但情况似乎并非如此我从 websocket 获得了 10 个数字列 headers,但在文档中找不到任何位置,第 10 列 headers 是?

websocket 排序到数据帧中的示例。

              0           1           2           3           4   \
0  1526397360000  0.00149350  0.00149360  0.00149200  0.00149360   

              5              6           7   8              9           10 11  
0  1535.88000000  1526397419999  2.29395137  30  1477.75000000  2.20716183  0  

Python-Binance API 包装器并非来自 Binance 官方,但它使用 Binance API。 kline/candlestick headers 记录在 Binance 的 Rest API

这是该文档中提供的示例和专栏 headers。

[
  [
    1499040000000,      // Open time
    "0.01634790",       // Open
    "0.80000000",       // High
    "0.01575800",       // Low
    "0.01577100",       // Close
    "148976.11427815",  // Volume
    1499644799999,      // Close time
    "2434.19055334",    // Quote asset volume
    308,                // Number of trades
    "1756.87402397",    // Taker buy base asset volume
    "28.46694368",      // Taker buy quote asset volume
    "17928899.62484339" // Ignore.
  ]
]