我正在查看Binance Websocket Stream,并对事件时间和交易时间有疑问。如果这是原始贸易信息,那么"贸易"?如何有两个不同的时间?什么是"活动时间"?
来自github API docs:
交易流
Trade Streams推动原始贸易信息;每笔交易都有独特的买卖双方。
流名称:@trade
有效载荷:
{
"e": "trade", // Event type
"E": 123456789, // Event time
"s": "BNBBTC", // Symbol
"t": 12345, // Trade ID
"p": "0.001", // Price
"q": "100", // Quantity
"b": 88, // Buyer order Id
"a": 50, // Seller order Id
"T": 123456785, // Trade time
"m": true, // Is the buyer the market maker?
"M": true // Ignore.
}
答案 0 :(得分:2)
“T”或“交易时间”是交易时间(以毫秒为单位)。我建议使用这个时间。
“E”或“事件时间”是时间值仅对套接字而言是固有的。它与创建套接字对象有关。
通常“事件时间”多于“交易时间”,这些值之间的差异只有几毫秒。小于30-40毫秒。有时“事件时间”少于“交易时间”。