ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

Crypto Scope

Skill by imgolye

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/imgolye/crypto-scope
Or

name: 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

Author@imgolye
Stars2287
Views1
Updated2026-03-09
View Author Profile
AI Skill Finder

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 skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-imgolye-crypto-scope": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.