如何获取币安的交易买入/卖出数据?

问题描述

我想通过币安 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?
}

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

解决方法

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

基本上如下:

  • isBuyerMaker = true -> 卖出
  • isBuyerMaker = false -> 购买

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...