get_all_orders
Retrieve a list of limit, take profit, and stop loss orders from the Armor Crypto MCP server. Filter results by status and specify the number of orders to return for efficient order management.
Instructions
Retrieve all limit, take profit and stop loss orders.
Returns a list of orders.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
get_all_orders_requests | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"ListOrderRequest": {
"properties": {
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 30,
"description": "number of most recent results to return",
"title": "Limit"
},
"status": {
"anyOf": [
{
"enum": [
"OPEN",
"CANCELLED",
"EXPIRED",
"COMPLETED",
"FAILED",
"IN_PROCESS"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "status of the orders, if specified filters results.",
"title": "Status"
}
},
"required": [
"status"
],
"title": "ListOrderRequest",
"type": "object"
}
},
"properties": {
"get_all_orders_requests": {
"$ref": "#/$defs/ListOrderRequest"
}
},
"required": [
"get_all_orders_requests"
],
"title": "get_all_ordersArguments",
"type": "object"
}