We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Source code comes from here https://github.com/binance/binance-futures-connector-node/blob/main/examples/um_futures/account/placeMultipleOrders.js
const batchOrders = [ { symbol: 'BNBUSDT', ...others}, { symbol: 'BNBUSDT', ...others } ] umFuturesClient .placeMultipleOrders(batchOrders) .then((response) => console.log(response)) .catch(console.error)
I believe that the request params should be transformed to string before sending
const batchOrders = [ { symbol: 'BNBUSDT', ...others}, { symbol: 'BNBUSDT', ...others } ] umFuturesClient .placeMultipleOrders(JSON.stringify(batchOrders)) .then((response) => console.log(response)) .catch(console.error)
I'm running my trading bot with this config and it works well
N/A
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue subject
Source code comes from here
https://github.com/binance/binance-futures-connector-node/blob/main/examples/um_futures/account/placeMultipleOrders.js
Expected behaviour
I believe that the request params should be transformed to string before sending
I'm running my trading bot with this config and it works well
Actual behaviour
N/A
Steps to reproduce
N/A
Environment
N/A
The text was updated successfully, but these errors were encountered: