cancel_order
Cancels an existing order by specifying the order ID, enabling management of trades through the Paper MCP Server's AI-driven trading platform. Simplifies order cancellation for streamlined trade control.
Instructions
Cancel an existing order
Input Schema
Name | Required | Description | Default |
---|---|---|---|
orderId | Yes | Order ID to cancel |
Input Schema (JSON Schema)
{
"properties": {
"orderId": {
"description": "Order ID to cancel",
"type": "string"
}
},
"required": [
"orderId"
],
"type": "object"
}