2

我想通过币安 websocket 获取 BTC 的实时买卖数据。

我在以下 websocket 模块中使用此方法:

网址:https ://python-binance.readthedocs.io/en/latest/binance.html#module-binance.streams

method:aggtrade_futures_socket(symbol: str, futures_type: binance.enums.FuturesType = <FuturesType.USD_M: 1>)

此方法返回以下值:

data:
{
"e": "aggTrade", // Event type
"E": 123456789, // Event time
"s": "BTCUSDT", // Symbol
"a": 5933014, // Aggregate trade ID
"p": "0.001", // Price
"q": "100", // Quantity
"f": 100, // First trade ID
"l": 105, // Last trade ID
"T": 123456785, // Trade time
"m": true, // Is the buyer the market maker?
}

但是,这个数据似乎并不能确定是卖还是买。如何获取买卖交易的数据?

4

1 回答 1

7

这个帖子帮助我最终理解了做市商/接受者的概念: https ://money.stackexchange.com/questions/90686/what-does-buyer-is-maker-mean

基本上如下:

  • isBuyerMaker = true -> 卖出
  • isBuyerMaker = false -> 购买
于 2021-06-02T03:21:20.860 回答