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
The "batchOrders" must be a JSON string, not a "NewFuturesOrder[]".
I encountered an error when attempting to place multiple orders using "futuresBatchOrders", which looked like this:
The issue was resolved when I used "JSON.stringify":
However I had to cast the "options" parameter to type "any" to bypass the type-checking, like this:
The text was updated successfully, but these errors were encountered:
The "batchOrders" must be a JSON string, not a "NewFuturesOrder[]".
I encountered an error when attempting to place multiple orders using "futuresBatchOrders", which looked like this:
The issue was resolved when I used "JSON.stringify":
However I had to cast the "options" parameter to type "any" to bypass the type-checking, like this:
The text was updated successfully, but these errors were encountered: