← 返回
未分类

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. Trig...
Real-time crypto market sentiment analysis. Aggregates Twitter/X, Reddit, Google Trends, and exchange data. Detects FOMO/FUD cycles and whale movements. Trig...
dzxiatian-crypto dzxiatian-crypto 来源
未分类 clawhub v1.0.0 1 版本 99866.1 Key: 无需
★ 0
Stars
📥 746
下载
💾 0
安装
1
版本
#ai#automation#latest

概述

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

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-05-03 07:37 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

content-creation

Weibo Trending Topics

dzxiatian-crypto
实时追踪微博热搜,获取热门话题、分类(娱乐/社会/科技/体育)及历史趋势数据,零配置。T...
★ 0 📥 1,384
data-analysis

AdMapix

fly0pants
AdMapix 原始数据层,提供广告创意、应用、排名、下载/收入及市场元数据。返回 AdMapix API 的结构化 JSON;调用方...
★ 297 📥 140,757
data-analysis

Tavily 搜索

jacky1n7
通过 Tavily API 进行网页搜索(Brave 替代方案)。当用户要求搜索网页、查找来源或链接,且 Brave 网页搜索不可用时使用。
★ 273 📥 100,356