Claw Trader Lite
/install claw-trader-lite
To create the file yourself:\r \r \r \r # Create the directory\r \r mkdir -p ~/.openclaw/workspace/skills/claw-trader-lite\r \r \r \r # Create the file\r \r cat > ~/.openclaw/workspace/skills/claw-trader-lite/SKILL.md \x3C\x3C 'EOF'\r \r ---\r \r name: claw-trader-lite\r \r description: |\r \r Free read-only market monitoring for Hyperliquid and LN Markets. \r \r Track real-time prices, view public balances, and monitor positions \r \r across DeFi and Bitcoin derivatives platforms. Zero private keys required.\r \r env:\r \r HYPERLIQUID_ACCOUNT_ADDRESS:\r \r description: "Optional: Your Hyperliquid wallet address to view balance/positions (e.g., 0x...)"\r \r required: false\r \r ---\r \r \r \r # Claw Trader Lite\r \r \r \r **Free read-only market intelligence for Hyperliquid and LN Markets.**\r \r \r \r Monitor real-time prices, track your portfolio, and view positions across DeFi and Bitcoin derivatives platforms. Perfect for keeping tabs on your trades without execution risk.\r \r \r \r ---\r \r \r \r ## What It Does\r \r \r \r Claw Trader Lite provides **read-only** access to market data and account information. It can view prices, balances, and positions but **cannot execute trades**—making it safe to use anywhere.\r \r \r \r ### Platforms Supported\r \r \r \r - **Hyperliquid** - DeFi perpetuals (ETH, SOL, AVAX, and 100+ altcoins)\r \r - **LN Markets** - Bitcoin derivatives via Lightning Network\r \r \r \r ---\r \r \r \r ## Key Features\r \r \r \r ✅ **Real-Time Price Feeds** - Live market data for BTC, ETH, SOL, and major assets \r \r ✅ **Portfolio Overview** - View balances and open positions at a glance \r \r ✅ **Zero Risk** - Read-only access, no private keys or API secrets needed \r \r ✅ **Lightweight** - Minimal dependencies, runs anywhere \r \r ✅ **Free Forever** - No costs, no limits, no catch \r \r \r \r ---\r \r \r \r ## Installation\r \r \r \r
\r
pip install requests\r
\r
\r
\r
\r
\r
Quick Start\r
\r
\r
\r
from claw\_lite import create\_monitor\r
\r
\r
\r
\# Create monitor\r
\r
monitor = create\_monitor()\r
\r
\r
\r
\# Check current prices\r
\r
btc\_price = monitor.get\_price("BTC", "lnmarkets")\r
\r
eth\_price = monitor.get\_price("ETH", "hyperliquid")\r
\r
sol\_price = monitor.get\_price("SOL", "hyperliquid")\r
\r
\r
\r
print(f"BTC: ${btc\_price:,.2f}")\r
\r
print(f"ETH: ${eth\_price:,.2f}")\r
\r
print(f"SOL: ${sol\_price:,.2f}")\r
\r
\r
\r
\r
\r
Usage Examples\r
\r
\r
\r
Get Single Asset Price\r
\r
\r
\r
\# Bitcoin price from LN Markets\r
\r
btc\_price = monitor.get\_price("BTC", "lnmarkets")\r
\r
\r
\r
\# Ethereum price from Hyperliquid\r
\r
eth\_price = monitor.get\_price("ETH", "hyperliquid")\r
\r
\r
\r
Get Multiple Prices\r
\r
\r
\r
assets = \["BTC", "ETH", "SOL", "AVAX"]\r
\r
prices = monitor.get\_prices(assets, "hyperliquid")\r
\r
\r
\r
for asset, price in prices.items():\r
\r
print(f"{asset}: ${price:,.2f}")\r
\r
\r
\r
View Account Balance (Hyperliquid)\r
\r
\r
\r
Note: Requires setting your public wallet address\r
\r
\r
\r
export HYPERLIQUID\_ACCOUNT\_ADDRESS="0xYourAddressHere"\r
\r
\r
\r
balance = monitor.get\_balance("hyperliquid")\r
\r
print(f"Account Value: ${balance:,.2f}")\r
\r
\r
\r
View Open Positions (Hyperliquid)\r
\r
\r
\r
positions = monitor.get\_positions("hyperliquid")\r
\r
\r
\r
for pos in positions:\r
\r
print(f"{pos\['coin']}: {pos\['size']} @ ${pos\['entryPx']}")\r
\r
\r
\r
\r
\r
Platform-Specific Notes\r
\r
\r
\r
Hyperliquid\r
\r
\r
\r
• Supports 100+ altcoins\r
\r
• Balance/positions require HYPERLIQUID\_ACCOUNT\_ADDRESS env var\r
\r
• Uses public API endpoints (no authentication needed for prices)\r
\r
LN Markets\r
\r
\r
\r
• Bitcoin-focused\r
\r
• Price data is public\r
\r
• Balances/positions require authenticated API (not included in Lite version)\r
\r
\r
\r
API Reference\r
\r
\r
\r
create\_monitor()\r
\r
\r
\r
Factory function to create a new MarketMonitor instance.\r
\r
\r
\r
Returns: MarketMonitor object\r
\r
\r
\r
MarketMonitor.get\_price(asset, platform)\r
\r
\r
\r
Get current price for an asset.\r
\r
\r
\r
Parameters:\r
\r
\r
\r
• asset (str): Asset symbol (e.g., "BTC", "ETH", "SOL")\r
\r
• platform (str): Platform name ("hyperliquid" or "lnmarkets")\r
\r
Returns: float - Current price in USD\r
\r
\r
\r
MarketMonitor.get\_prices(assets, platform)\r
\r
\r
\r
Get prices for multiple assets at once.\r
\r
\r
\r
Parameters:\r
\r
\r
\r
• assets (List\[str]): List of asset symbols\r
\r
• platform (str): Platform name\r
\r
Returns: Dict\[str, float] - Mapping of asset symbols to prices\r
\r
\r
\r
MarketMonitor.get\_balance(platform)\r
\r
\r
\r
Get account balance.\r
\r
\r
\r
Parameters:\r
\r
\r
\r
• platform (str): Platform name\r
\r
Returns: float - Account balance in USD\r
\r
\r
\r
Claw 🦞, \[2/18/2026 2:55 PM]\r
\r
Note: Requires HYPERLIQUID\_ACCOUNT\_ADDRESS for Hyperliquid\r
\r
\r
\r
MarketMonitor.get\_positions(platform)\r
\r
\r
\r
Get open positions.\r
\r
\r
\r
Parameters:\r
\r
\r
\r
• platform (str): Platform name\r
\r
Returns: List\[Dict] - List of position dictionaries\r
\r
\r
\r
Note: Requires HYPERLIQUID\_ACCOUNT\_ADDRESS for Hyperliquid\r
\r
\r
\r
\r
\r
Environment Variables\r
\r
\r
\r
| Variable | Required | Description |\r
\r
| --------------------------- | -------- | ---------------------------------------------------------- |\r
\r
| HYPERLIQUID\_ACCOUNT\_ADDRESS | Optional | Your Hyperliquid wallet address to view balances/positions |\r
\r
\r
\r
\r
\r
Limitations\r
\r
\r
\r
This is a Lite read-only version:\r
\r
\r
\r
• ✅ View prices, balances, positions\r
\r
• ❌ Cannot execute trades\r
\r
• ❌ Cannot place orders\r
\r
• ❌ Cannot manage positions\r
\r
For trading execution, build your own integration or use platform-specific SDKs.\r
\r
\r
\r
\r
\r
Troubleshooting\r
\r
\r
\r
"Error fetching price"\r
\r
\r
\r
• Check internet connection\r
\r
• Verify asset symbol is correct (case-sensitive on some platforms)\r
\r
• Try again (may be temporary API issue)\r
\r
"HYPERLIQUID\_ACCOUNT\_ADDRESS not set"\r
\r
\r
\r
• Export your wallet address: export HYPERLIQUID\_ACCOUNT\_ADDRESS="0x..."\r
\r
• Or pass directly in code (not recommended for shared environments)\r
\r
Balance shows 0 for LN Markets\r
\r
\r
\r
• LN Markets requires authentication for balance data\r
\r
• Lite version only provides public price feeds for LN Markets\r
\r
\r
\r
Technical Details\r
\r
\r
\r
Dependencies:\r
\r
\r
\r
• requests - HTTP library for API calls\r
\r
Data Sources:\r
\r
\r
\r
• Hyperliquid Public API (https://api.hyperliquid.xyz)\r
\r
• LN Markets Public API (https://api.lnmarkets.com)\r
\r
License: MIT\r
\r
\r
\r
\r
\r
About\r
\r
\r
\r
Built for traders who want simple, free market monitoring without complexity or risk.\r
\r
\r
\r
🦞 Free forever. No signup. No API keys.\r
\r
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install claw-trader-lite - 安装完成后,直接呼叫该 Skill 的名称或使用
/claw-trader-lite触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Claw Trader Lite 是什么?
Multi-platform market intelligence for OpenClaw agents. Monitor real-time prices, balances, and positions across Hyperliquid (DeFi) and LNMarkets (Bitcoin).... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 788 次。
如何安装 Claw Trader Lite?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install claw-trader-lite」即可一键安装,无需额外配置。
Claw Trader Lite 是免费的吗?
是的,Claw Trader Lite 完全免费(开源免费),可自由下载、安装和使用。
Claw Trader Lite 支持哪些平台?
Claw Trader Lite 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Claw Trader Lite?
由 nickymick8(@nickymick8)开发并维护,当前版本 v1.0.3。