list_orders
Retrieve open orders for a specified trading pair using the Luno MCP Server. Set a limit to control the number of orders returned, aiding in efficient trade management.
Instructions
List open orders
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of orders to return (default: 100) | |
pair | No | Trading pair (e.g., XBTZAR) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Maximum number of orders to return (default: 100)",
"type": "number"
},
"pair": {
"description": "Trading pair (e.g., XBTZAR)",
"type": "string"
}
},
"type": "object"
}