Skip to content

Commit 3ba5e70

Browse files
authored
Update README.md
1 parent 8bad385 commit 3ba5e70

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,26 @@ console.info( await binance.futuresMarketBuy( 'BNBUSDT', 5 ) );
8080
```js
8181
console.info( await binance.futuresMarketSell( 'TRXUSDT', 1 ) );
8282
```
83+
84+
#### Futures Place Multiple Orders
85+
```js
86+
let orders = [
87+
{
88+
symbol:"BTCUSDT",
89+
side: "BUY",
90+
type: "MARKET",
91+
quantity: "0.01",
92+
},
93+
{
94+
symbol:"BNBUSDT",
95+
side: "SELL",
96+
type: "MARKET",
97+
quantity: "0.5",
98+
}
99+
]
100+
console.info( await binance.futuresMultipleOrders(orders) );
101+
```
102+
83103
#### Futures Market Orders: Get the fill price using newOrderRespType
84104
```js
85105
console.info( await binance.futuresMarketBuy( 'BNBUSDT', amount, { newOrderRespType: 'RESULT' } ) );

0 commit comments

Comments
 (0)