We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bad385 commit 3ba5e70Copy full SHA for 3ba5e70
1 file changed
README.md
@@ -80,6 +80,26 @@ console.info( await binance.futuresMarketBuy( 'BNBUSDT', 5 ) );
80
```js
81
console.info( await binance.futuresMarketSell( 'TRXUSDT', 1 ) );
82
```
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
97
+ quantity: "0.5",
98
+ }
99
+]
100
+console.info( await binance.futuresMultipleOrders(orders) );
101
+```
102
103
#### Futures Market Orders: Get the fill price using newOrderRespType
104
105
console.info( await binance.futuresMarketBuy( 'BNBUSDT', amount, { newOrderRespType: 'RESULT' } ) );
0 commit comments