-
Notifications
You must be signed in to change notification settings - Fork 174
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Retrieving Orders produces a json array where BUY orders and SELL orders have a different record structure #107
Comments
In this example a BUY order has 20 data fields while a SELL order has 22 fields: { |
@roberto-cisternino Can you specifically mention the additional fields? |
Ok, let's compare the record with id=2 below (SELL), with the record with id=1 (BUY), just check the array "td": SELL td has 22 items and starting with value 20 the record is different from the BUY record with id=1: { BUY td array has 20 items (two less then SELL item): { |
Recently, when retrieving Orders using createTrade().getOrders(...),
the json array response produces a list of BUY orders and SELL orders with a different record structure.
This do not allow to create a table view correclty.
The text was updated successfully, but these errors were encountered: