如何通过 Binance API、Python 获取当前位置

How get current positions by Binance API, Python

谁能告诉我如何通过 python-binance 获取当前位置?喜欢屏幕上的“WAVESUSDT”。

这是文档,但我在那里找不到这个方法。有人可以帮我吗? https://python-binance.readthedocs.io/en/latest/account.html#account

找到了,耶!

client = Client(api,key)
client.futures_account()['positions']

我已经从这个 url

中得到空缺职位

https://testnet.binancefuture.com/fapi/v2/positionRisk?

(注意,如果没有开仓,它将 return 2 个虚拟仓位)

return await axios
    .get(`https://testnet.binancefuture.com/fapi/v2/positionRisk?symbol=${token_pair}&timestamp=${timestamp}&signature=${signature}`, {
        headers: {
            'Content-Type': 'application/json',
            'X-MBX-APIKEY': api_key
        }
    })