create_batch_orders
Streamline trading by generating multiple orders simultaneously in the Paper trading platform using a single request, enabling efficient portfolio management and trade execution.
Instructions
Create multiple orders at once
Input Schema
Name | Required | Description | Default |
---|---|---|---|
orders | Yes | Array of order objects |
Input Schema (JSON Schema)
{
"properties": {
"orders": {
"description": "Array of order objects",
"items": {
"properties": {
"portfolioId": {
"type": "string"
},
"quantity": {
"type": "number"
},
"side": {
"type": "string"
},
"symbol": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"required": [
"orders"
],
"type": "object"
}