How It Works
The OpenClaw skill provides a CLI script that Claude calls to interact with the Horizon engine:Installation
Option A: Install from ClawHub (recommended)
The fastest way to add the Horizon trader skill to your OpenClaw bot:Option B: Manual install from source
Copy the skill to your OpenClaw skills directory
Commands
The skill exposes these commands via the CLI script:Portfolio
Trading
Discovery
Kelly Sizing
Risk Management
Feed Data & Health
Contingent Orders
Event Discovery
Wallet Analytics (Polymarket - no auth required)
Hedging & Cross-Market
Account & Credentials
Simulation & Arbitrage
Conversation Examples
Telegram
SKILL.md Reference
TheSKILL.md file tells Claude when and how to use the skill:
- When to activate (user asks about trading, positions, markets)
- Command syntax with examples
- Output format (JSON)
- Safety notes (confirm before submitting orders)
Output Format
All commands return JSON. On success:Pipeline Features (v0.4.0)
The Horizon SDK includes advanced pipeline components for automated strategies:- Regime Detection (
regime_signal) - volatility/trend regime classification - Feed Guard (
feed_guard) - auto-activates kill switch when feeds go stale - Inventory Skew (
inventory_skewer) - shifts quotes to reduce position risk - Adaptive Spread (
adaptive_spread) - dynamically adjusts spread based on market conditions - Execution Tracker (
execution_tracker) - monitors fill quality and adverse selection - Multi-Strategy - run different pipelines per market via dict config
- Cross-Market Hedging (
cross_hedger) - generates hedge quotes when portfolio delta exceeds threshold
hz.run() in Python strategies. See the full documentation for details.