Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,17 @@ let orders = [
console.info( await binance.futuresMultipleOrders(orders) );
```

#### Futures Cancel Multiple Orders
```js
let list = [1234567,2345678]; // max length 10
console.info( await binance.futuresCancelMultipleOrders({symbol: 'BNBUSDT', orderIdList: list}) );

/* OR */

let list = ["my_id_1","my_id_2"]; // max length 10. Encode the double quotes. No space after comma.
console.info( await binance.futuresCancelMultipleOrders({symbol: 'BNBUSDT', origClientOrderIdList: list}) );
```

#### Futures Market Orders: Get the fill price using newOrderRespType
```js
console.info( await binance.futuresMarketBuy( 'BNBUSDT', amount, { newOrderRespType: 'RESULT' } ) );
Expand Down