cancelOrder
Cancel a specific cryptocurrency trading order by providing account details, order ID, and trading symbol. Integrates with CCXT MCP Server for exchange API connectivity.
Instructions
Cancel an existing order using a configured account
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accountName | Yes | Account name defined in the configuration file (e.g., 'bybit_main') | |
id | Yes | Order ID to cancel | |
params | No | Additional exchange-specific parameters | |
symbol | Yes | Trading symbol (e.g., 'BTC/USDT') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"accountName": {
"description": "Account name defined in the configuration file (e.g., 'bybit_main')",
"type": "string"
},
"id": {
"description": "Order ID to cancel",
"type": "string"
},
"params": {
"additionalProperties": {},
"description": "Additional exchange-specific parameters",
"type": "object"
},
"symbol": {
"description": "Trading symbol (e.g., 'BTC/USDT')",
"type": "string"
}
},
"required": [
"accountName",
"id",
"symbol"
],
"type": "object"
}