Crypto Scope
Skill by imgolye
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/imgolye/crypto-scopename: crypto-scope version: 1.0.5 description: 加密货币数据分析助手,实时价格查询、技术指标分析、交易信号生成。使用场景:(1) 实时价格监控 (2) 技术指标分析(MA/RSI/MACD) (3) 交易信号生成 (4) 市场趋势判断。Triggers: "加密货币", "比特币", "以太坊", "价格分析", "技术指标", "交易信号", "crypto", "bitcoin", "eth"。
CryptoScope - 加密货币数据分析助手
快速开始
实时价格查询
# 比特币价格
python3 scripts/crypto_analyzer.py price bitcoin
# 以太坊价格
python3 scripts/crypto_analyzer.py price ethereum
# 自定义币种
python3 scripts/crypto_analyzer.py price solana
技术指标分析
# 完整技术分析
python3 scripts/crypto_analyzer.py analyze bitcoin
# 指定指标
python3 scripts/crypto_analyzer.py analyze ethereum --indicators ma,rsi,macd
交易信号
# 生成交易信号
python3 scripts/crypto_analyzer.py signal bitcoin
# 多币种信号
python3 scripts/crypto_analyzer.py signal bitcoin,ethereum,solana
输出格式
JSON格式(默认)
{
"symbol": "bitcoin",
"name": "Bitcoin",
"price": 42350.67,
"change_24h": 2.35,
"volume_24h": 28500000000,
"market_cap": 830000000000,
"indicators": {
"ma_20": 42100.50,
"rsi": 58.3,
"macd": "bullish"
},
"signal": "BUY",
"confidence": 0.75,
"timestamp": 1709798400
}
Markdown格式
python3 scripts/crypto_analyzer.py analyze bitcoin --format markdown
核心功能
1. 实时价格查询
支持币种:
- ✅ Bitcoin (BTC)
- ✅ Ethereum (ETH)
- ✅ BNB (BNB)
- ✅ Solana (SOL)
- ✅ Cardano (ADA)
- ✅ Polkadot (DOT)
- ✅ 10000+ 其他币种
数据来源:
- CoinGecko API(免费)
- 更新频率:每分钟
示例:
python3 scripts/crypto_analyzer.py price bitcoin
# 输出
{
"symbol": "bitcoin",
"name": "Bitcoin",
"price": 42350.67,
"change_24h": 2.35,
"volume_24h": 28500000000
}
2. 技术指标分析
支持指标:
| 指标 | 说明 | 周期 |
|---|---|---|
| MA | 移动平均线 | 20/50/200 |
| RSI | 相对强弱指数 | 14 |
| MACD | 异同移动平均线 | 12/26/9 |
| Bollinger | 布林带 | 20,2 |
| EMA | 指数移动平均 | 12/26 |
示例:
# 完整分析
python3 scripts/crypto_analyzer.py analyze ethereum
# 输出
{
"symbol": "ethereum",
"price": 2250.45,
"indicators": {
"ma_20": 2200.30,
"ma_50": 2150.80,
"rsi": 62.5,
"macd": {
"value": 15.3,
"signal": 12.1,
"trend": "bullish"
}
}
}
3. 交易信号生成
信号类型:
- BUY(买入)
- SELL(卖出)
- HOLD(持有)
信号逻辑:
# 多指标综合判断
- MA交叉
- RSI超买超卖
- MACD金叉死叉
- 趋势强度
# 置信度计算
confidence = (
ma_signal * 0.3 +
rsi_signal * 0.3 +
macd_signal * 0.4
)
示例:
python3 scripts/crypto_analyzer.py signal bitcoin
# 输出
{
"symbol": "bitcoin",
"signal": "BUY",
"confidence": 0.75,
"reasons": [
"MA20上穿MA50",
"RSI=58(健康区间)",
"MACD金叉确认"
],
"risk_level": "medium"
}
4. 批量监控
多币种监控:
# 监控多个币种
python3 scripts/crypto_analyzer.py monitor bitcoin,ethereum,solana
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-imgolye-crypto-scope": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
xiaohongshu-viral-content
小红书爆款文案生成器。基于热门模板和数据驱动,生成高转化率的小红书内容。
daily-hot-push
每日推送中国热榜TOP10到飞书。从微博、知乎、百度、36氪筛选最重要的新闻,智能排除明星八卦和主观评论。
agent-task-queue
Build and operate a multi-agent task queue in OpenClaw with priority queues, delayed/dead-letter queues, scheduling, retry/timeout control, dependency management, parallel execution, and execution tracking using the bundled TypeScript runtime.
Doc Genius
Skill by imgolye
agent-communication-hub
Provide agent-to-agent communication for OpenClaw skills with direct messaging, broadcast delivery, pub/sub events, session tracking, offline queues, and SQLite-backed persistence. Use when agents need reliable message exchange, event fan-out, subscription filtering, or communication history.