Open XHighIntell opened 11 months ago
Thank you. How about Coin-m Future? the same problem?
@dante1989 I don't use Coin-M Future, I can't send real request right now.
Look at the document, Coin-M Future has some fields that are different. https://binance-docs.github.io/apidocs/delivery/en/#query-order-user_data
Looks like cumQty
does not exist either.
So Yes, the same problem for QuantityFilled
Hm seems to mapped incorrectly yes. Not sure where that originates from. I'll have a look
I've corrected the model(s), should be working correct now. Let me know if you have any issues
For Example: Dim ItemOrderBinance_USD As WebCallResult(Of BinanceUsdFuturesOrder) ItemOrderBinance_USD = Await clientFutureBinance.UsdFuturesApi.Trading.GetOrderAsync(Symbol, , ClientOrderId)
How could I make new ItemOrderBinance (class BinanceFuturesOrder) by converting from Class BinanceUsdFuturesOrder or copying the same properties from BinanceUsdFuturesOrder. For me, I like to combine BinanceUsdFuturesOrder and BinanceFuturesOrder Like Old Version (Version 9.3.0 - 26 Dec 2023) because I write a bot for USD future and Coin Future all in 1
Describe the bug
FILLED
UsdFuturesApi.Trading.GetOrderAsync(symbol, orderId)
Here is raw response from /fapi/v1/order?symbol=BTCUSDT&orderid=123
You maped
cumQty
toQuantityFilled
. cumQty does not exist in response. You mapedexecutedQty
toLastFilledQuantity
that should beQuantityFilled