paradex_open_orders
Monitor and manage active trading orders to track execution status, verify details, and avoid duplicate or conflicting trades on the MCP Paradex Server.
Instructions
Monitor your active orders to track execution status and manage your trading strategy.
Use this tool when you need to:
- Check which of your orders are still pending execution
- Verify limit order prices and remaining quantities
- Determine which orders might need cancellation or modification
- Get a complete picture of your current market exposure
Keeping track of your open orders is essential for effective order management
and avoiding duplicate or conflicting trades.
Example use cases:
- Checking if your limit orders have been partially filled
- Verifying that a recently placed order was accepted by the exchange
- Identifying stale orders that should be canceled or modified
- Getting a consolidated view of all pending orders across markets
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Limit the number of results to the specified number. | |
market_id | No | Filter by market. | ALL |
offset | No | Offset the results to the specified number. |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Limit the number of results to the specified number.",
"exclusiveMinimum": 0,
"maximum": 100,
"title": "Limit",
"type": "integer"
},
"market_id": {
"default": "ALL",
"description": "Filter by market.",
"title": "Market Id",
"type": "string"
},
"offset": {
"default": 0,
"description": "Offset the results to the specified number.",
"minimum": 0,
"title": "Offset",
"type": "integer"
}
},
"title": "get_open_ordersArguments",
"type": "object"
}