You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dim ItemFuturesAccountBalance = Await clientBinance.UsdFuturesApi.Account.GetBalancesAsync
Dim BalanceUSD = Array.Find(ItemFuturesAccountBalance.Data.ToArray(), Function(m) m.Asset = "USDT")
In older version: the BalanceUSD.CrossUnrealizedPnl = 0 is correct because i'm using Isolated Mode Margin
After upgrading to Version 10.0.0 - 27 Jul 2024 UsdFuturesApi.Account.GetBalancesAsync to V3. BalanceUSD.CrossUnrealizedPnl <> 0 when i have a isolated position. It is not correct
The text was updated successfully, but these errors were encountered:
I'd rather not implement multiple versions of the same functionality unless there is a good reason. I'm assuming they'll fix this on their end which should make the V3 endpoint the same as V2 right?
i'm using Isolated Mode Margin
Dim ItemFuturesAccountBalance = Await clientBinance.UsdFuturesApi.Account.GetBalancesAsync
Dim BalanceUSD = Array.Find(ItemFuturesAccountBalance.Data.ToArray(), Function(m) m.Asset = "USDT")
In older version: the BalanceUSD.CrossUnrealizedPnl = 0 is correct because i'm using Isolated Mode Margin
After upgrading to Version 10.0.0 - 27 Jul 2024 UsdFuturesApi.Account.GetBalancesAsync to V3. BalanceUSD.CrossUnrealizedPnl <> 0 when i have a isolated position. It is not correct
The text was updated successfully, but these errors were encountered: