← Back to registry

TOOL · get_bot_status

Get the current status of a deployed trading bot, including live metrics, open positions, and recent trade history.

Canonical Definition

{
  "description": "Get the current status of a deployed trading bot, including live metrics, open positions, and recent trade history.",
  "name": "get_bot_status",
  "parameters": {
    "properties": {
      "bot_id": {
        "description": "The ID of the bot to check.",
        "type": "integer"
      },
      "include_trades": {
        "description": "Whether to include recent trade history (default: true).",
        "type": "boolean"
      },
      "trade_limit": {
        "description": "Number of recent trades to include (default: 10).",
        "type": "integer"
      }
    },
    "required": [
      "bot_id"
    ],
    "type": "object"
  }
}