Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Integrate OpenClaw with Xerolite - IBKR. Use when: querying Xerolite API, placing orders, searching contracts.
Integrate OpenClaw with Xerolite - IBKR. Use when: querying Xerolite API, placing orders, searching contracts.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Trading Bridge from TradingView to Interactive Brokers. Xerolite automates execution of your trading ideas: it connects TradingView alerts to your Interactive Brokers account so orders are sent in real time with no manual steps. You design the logic and alerts in TradingView; Xerolite handles the bridge to IB (TWS or IB Gateway) and execution. This skill lets your OpenClaw agent call the Xerolite REST API to place orders and search contracts โ so you can trade or look up symbols from natural language or automation without leaving your workflow.
skills/xerolite/ โโโ SKILL.md # This file โโโ scripts/ โ โโโ xerolite.mjs # CLI (order place, contract search) โโโ references/ โโโ API.md # REST API guide
Place orders via Xerolite REST API. Search contracts via Xerolite REST API.
Use these commands from the skill directory (or with {baseDir} in other skills). Default flag values (optional; omit to use): --currency USD, --asset-class STOCK, --exch SMART.
Required: --action, --qty, --symbol. Optional: --currency, --asset-class, --exch. # Minimal (defaults: USD, STOCK, SMART) node {baseDir}/scripts/xerolite.mjs order place --symbol AAPL --action BUY --qty 10 # Full node {baseDir}/scripts/xerolite.mjs order place \ --symbol AAPL \ --currency USD \ --asset-class STOCK \ --exch SMART \ --action BUY \ --qty 10 JSON sent to POST /api/internal/agent/order/place-order: { "name": "Agent", "action": "BUY", "qty": "10", "symbol": "AAPL", "currency": "USD", "asset_class": "STOCK", "exch": "SMART" }
Required: --symbol. Optional: --currency, --asset-class, --exch. # Minimal (defaults: USD, STOCK, SMART) node {baseDir}/scripts/xerolite.mjs contract search --symbol AAPL # Full node {baseDir}/scripts/xerolite.mjs contract search \ --symbol AAPL \ --currency USD \ --asset-class STOCK \ --exch SMART JSON sent to POST /api/internal/agent/contract/search: { "brokerName": "IBKR", "symbol": "AAPL", "currency": "USD", "xeroAssetClass": "STOCK" }
For the order and contract search endpoints used by this skill, see references/API.md.
Node.js 18+ (for built-in fetch) CLI only: Optional XEROLITE_API_URL โ base URL for Xerolite API. If not set, defaults to http://localhost (same machine or local network). No API key in this version; may be added in a future version.
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.