list_dca_orders
Retrieve and filter DCA (Dollar-Cost Averaging) orders by status and limit on Armor Crypto MCP. Access detailed order responses for managing crypto trading strategies.
Instructions
List all DCA orders.
Returns a list of DCAOrderResponse.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
list_dca_order_requests | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"ListDCAOrderRequest": {
"properties": {
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 30,
"description": "number of mostrecent results to return",
"title": "Limit"
},
"status": {
"anyOf": [
{
"enum": [
"COMPLETED",
"OPEN",
"CANCELLED"
],
"type": "string"
},
{
"type": "null"
}
],
"description": "status of the DCA orders, if specified filters the results.",
"title": "Status"
}
},
"required": [
"status"
],
"title": "ListDCAOrderRequest",
"type": "object"
}
},
"properties": {
"list_dca_order_requests": {
"$ref": "#/$defs/ListDCAOrderRequest"
}
},
"required": [
"list_dca_order_requests"
],
"title": "list_dca_ordersArguments",
"type": "object"
}