placeBatchOrders
Execute multiple cryptocurrency trading orders simultaneously on Aster Finance to manage portfolio positions efficiently and save time on manual order placement.
Instructions
Place multiple orders.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| batchOrders | Yes |
Input Schema (JSON Schema)
{
"properties": {
"batchOrders": {
"items": {
"properties": {
"price": {
"type": "number"
},
"quantity": {
"type": "number"
},
"side": {
"enum": [
"BUY",
"SELL"
],
"type": "string"
},
"symbol": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"symbol",
"side",
"type",
"quantity"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"batchOrders"
],
"type": "object"
}