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
After executing a market order, if i want to take the price i usually do:
var orders = await client.GetAllOrders(new AllOrdersRequest() { Symbol = Symbol });
price = orders.OrderByDescending(a => a.Time).FirstOrDefault().Price;
Price always equal to 0.00000
Package Version: ?.?.?
Repro Steps
var orders = await client.GetAllOrders(new AllOrdersRequest() { Symbol = Symbol });
price = orders.OrderByDescending(a => a.Time).FirstOrDefault().Price;
Other Information
The text was updated successfully, but these errors were encountered:
Issue Overview
After executing a market order, if i want to take the price i usually do:
var orders = await client.GetAllOrders(new AllOrdersRequest() { Symbol = Symbol });
price = orders.OrderByDescending(a => a.Time).FirstOrDefault().Price;
Price always equal to 0.00000
Package Version: ?.?.?
Repro Steps
var orders = await client.GetAllOrders(new AllOrdersRequest() { Symbol = Symbol });
price = orders.OrderByDescending(a => a.Time).FirstOrDefault().Price;
Other Information
The text was updated successfully, but these errors were encountered: