create_order
Place a new limit order on the Luno MCP Server by specifying a trading pair, order type (BUY/SELL), volume, and limit price.
Instructions
Create a new limit order
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pair | Yes | Trading pair (e.g., XBTZAR) | |
price | Yes | Limit price as a decimal string | |
type | Yes | Order type (BUY or SELL) | |
volume | Yes | Order volume (amount of cryptocurrency to buy or sell) |
Input Schema (JSON Schema)
{
"properties": {
"pair": {
"description": "Trading pair (e.g., XBTZAR)",
"type": "string"
},
"price": {
"description": "Limit price as a decimal string",
"type": "string"
},
"type": {
"description": "Order type (BUY or SELL)",
"enum": [
"BUY",
"SELL"
],
"type": "string"
},
"volume": {
"description": "Order volume (amount of cryptocurrency to buy or sell)",
"type": "string"
}
},
"required": [
"pair",
"type",
"volume",
"price"
],
"type": "object"
}