binance-exchange/node-binance-api

Get all open orders on an account

evancaldwell opened this issue · 3 comments

I don't see any way to get all open orders for an account - only getting all open orders on an account for a specific symbol. Is there a way (or template) for getting all open orders for all symbols?

Yip. Just pass false to the openOrders() call.

binance.openOrders(false, (error, openOrders) => {
  console.log("openOrders()", openOrders);
});

Ok great. Thank you. Did I miss that in the readme or did you just add it in?

You're welcome. You missed it in the readme. ;)