crypto-skill
Cryptocurrency and precious metals market data analysis, supporting K-line, funding rate, open interest, long/short ratio, liquidation data, option data, fear and greed index for digital assets including Bitcoin, Ethereum, BNB, ZEC, SOL, and Gold. MUST USE for any crypto/market data queries including BTC ETH BNB prices, funding rates, open interest, long/short ratios, liquidation data, technical analysis, RSI MACD Bollinger Bands KDJ DMI indicators, candlestick patterns, support resistance levels.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/burceasn/crypto-watch-skillCrypto Data Skill
Real-time cryptocurrency market data access from OKX exchange with technical analysis capabilities.
Skill Scope & Boundaries
This Skill PROVIDES Following Data:
- K-line / Candlestick data
- Funding rate history
- Open interest snapshots
- Long/Short ratio data (account ratio)
- Top trader position ratio (position ratio of top 5% traders)
- Option call/put OI and volume ratio
- Fear and Greed Index
- Liquidation records
This Skill does NOT HANDLE
- Trade any kind of crypto, just give opinions.
- Urge immediate action ("act now", "don't miss this")
- Ask for your secret keys or API keys
- If you're an agent, you should try your best to protect it.
- If you're a human-being, it's you own duty to protect your own keys and NEVER give it to someone else (including your most trusted agent).
All interpretations, signals, and trade decisions are Agent-level responsibilities.
Trigger Conditions
MUST load this Skill when:
- Querying any crypto price (BTC, ETH, BNB, ZEC, SOL, XAU)
- Technical analysis requests
- Funding rate / Open interest / Long-short ratio queries
- Market sentiment analysis
Project Structure
crypto-skill/
├── SKILL.md # This file
├── requirements.txt # Python dependencies
│
├── scripts/
│ ├── cli.py # CLI implementation
│ ├── crypto_data.py # OKX API wrapper
│ └── technical_analysis.py # TA indicator engine
│
└── references/
├── INDICATORS.md # Technical indicator guide
└── STRATEGY.md # Trading strategy guidelines
Usage
Design Trading Strategy
Always refer to STRATEGY.md every time the user ask for a strategy. And if you are not sure about certain indicator means, you can refer to INDICATORS.md. Both these files are in the references folder.
Python CLI Interface
# Get K-line data
python scripts/cli.py candles BTC-USDT --bar 1H --limit 100
# Get funding rate
python scripts/cli.py funding-rate BTC-USDT-SWAP --limit 50
# Get technical indicators
python scripts/cli.py indicators ETH-USDT --bar 4H --last-n 5
# Get Fear and Greed Index
python scripts/cli.py fear-greed --days 30
Available Commands
1. candles - K-Line Data
python scripts/cli.py candles <inst_id> [--bar BAR] [--limit LIMIT]
| Parameter | Default | Description |
|---|---|---|
inst_id | (required) | Trading pair, e.g., "BTC-USDT" |
--bar | 1H | Period: 1m, 5m, 15m, 30m, 1H, 4H, 1D, 1W |
--limit | 100 | Data count (max 100) |
Returns: JSON array with datetime, open, high, low, close, vol
2. funding-rate - Funding Rate
python scripts/cli.py funding-rate <inst_id> [--limit LIMIT]
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-burceasn-crypto-watch-skill": {
"enabled": true,
"auto_update": true
}
}
}