crypto-sentiment-monitor

Real-time crypto market sentiment analysis. Aggregates Twitter/X, Reddit, Google Trends, and exchange data. Detects FOMO/FUD cycles and whale movements. Triggers: "crypto", "比特币", "sentiment", "情绪", "FOMO", "FUD".

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "crypto-sentiment-monitor" with this command: npx skills add dzxiatian-crypto/crypto-sentiment-monitor

Crypto Sentiment Monitor

Real-time cryptocurrency market sentiment analysis combining social media, search trends, and exchange data.

Features

  • Social Sentiment: Twitter/X, Reddit, Telegram channel analysis
  • Search Trends: Google Trends, Baidu Index for crypto keywords
  • Exchange Data: Funding rates, open interest, whale transactions
  • FOMO/FUD Detection: Fear & Greed index calculation

Usage

Twitter Sentiment

xreach search "$BTC OR #Bitcoin OR $ETH" -n 50 --json | \
  python3 analyze_sentiment.py

Fear & Greed Index

def calculate_fear_greed():
    """Calculate Crypto Fear & Greed Index (0-100)"""
    components = {
        "volatility": get_volatility(),      # 25%
        "market_momentum": get_momentum(),  # 25%
        "social_volume": get_social_vol(),  # 15%
        "dominant": get_btc_dominance(),    # 10%
        "trends": get_google_trends(),      # 10%
        "whale_ratio": get_whale_ratio(),   # 15%
    }
    score = sum(c["weight"] * c["value"] 
                for c in components.values())
    
    if score < 25: return "Extreme Fear 😱"
    elif score < 45: return "Fear 😰"
    elif score < 55: return "Neutral 😐"
    elif score < 75: return "Greed 😊"
    else: return "Extreme Greed 🤑"

Whale Alert Detection

def detect_whale_movements():
    """Detect large wallet transactions"""
    alerts = get_whale_alerts(min_usd=1000000)
    for alert in alerts:
        if alert["amount_usd"] > 10000000:
            print(f"🐋 ${alert['amount_usd']/1e6:.1f}M moved: "
                  f"{alert['from']} → {alert['to']}")

Sources

  • Twitter/X: xreach tool
  • Reddit: r/CryptoCurrency and r/Bitcoin hot posts
  • Google Trends: crypto, bitcoin, ethereum
  • Whale Alert: whale-alert.io (free API)

Tags

crypto bitcoin sentiment trading fear-greed whale-alert twitter

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Web3

Veroq

Provide verified AI intelligence on markets, assets, sentiment, and economic data with live prices, signals, analysis, and fact-checking from 1,000+ tickers...

Registry SourceRecently Updated
1340Profile unavailable
Web3

Polaris

Access verified, real-time news briefs, on-demand intelligence reports, trending topics, and search from 160+ sources across 18 categories with bias and conf...

Registry Source
2990Profile unavailable
Security

12 Cool Skills for OpenClaw Agent

Assistant de trading automatisé pour l'analyse de marché, la détection de signaux et l'exécution de stratégies techniques (RSI, MA, Support/Résistance). À ut...

Registry SourceRecently Updated
820Profile unavailable
Web3

Crypto Executor

Complete autonomous trading engine for Binance with WebSocket real-time, OCO orders, Kelly Criterion position sizing, trailing stops, circuit breakers, daily...

Registry SourceRecently Updated
5320Profile unavailable