Exchange

Place, cancel, and query orders on supported exchanges.

v1.5.2financeby norien · updated 10h ago
$ norien tool install exchange@1.5.2
Category
finance
Runtime
Permissions
0
Environment
0
declared variables

Details

Slug
exchange
Version
1.5.2
Runtime
Entrypoint
Authentication
api_key · X-Exchange-Key
License
Published
10h ago

Requirements

Permissions

None requested.

Dependencies

None.

Tags

tradingordersexchange

Environment variables

No environment variables

This tool needs no configuration.

Input schema

{
  "type": "object",
  "required": [
    "action",
    "symbol"
  ],
  "properties": {
    "side": {
      "enum": [
        "buy",
        "sell"
      ],
      "type": "string"
    },
    "action": {
      "enum": [
        "place",
        "cancel",
        "status"
      ],
      "type": "string"
    },
    "symbol": {
      "type": "string"
    },
    "quantity": {
      "type": "string"
    },
    "limit_price": {
      "type": "string"
    }
  }
}

Output schema

{
  "type": "object",
  "properties": {
    "status": {
      "type": "string"
    },
    "order_id": {
      "type": "string"
    },
    "filled_quantity": {
      "type": "string"
    }
  }
}

Version history