Crypto Sentiment Monitor
/install 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 \x3C 25: return "Extreme Fear 😱"
elif score \x3C 45: return "Fear 😰"
elif score \x3C 55: return "Neutral 😐"
elif score \x3C 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/CryptoCurrencyandr/Bitcoinhot posts - Google Trends:
crypto,bitcoin,ethereum - Whale Alert: whale-alert.io (free API)
Tags
crypto bitcoin sentiment trading fear-greed whale-alert twitter
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install crypto-sentiment-monitor - After installation, invoke the skill by name or use
/crypto-sentiment-monitor - Provide required inputs per the skill's parameter spec and get structured output
What is 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... It is an AI Agent Skill for Claude Code / OpenClaw, with 153 downloads so far.
How do I install Crypto Sentiment Monitor?
Run "/install crypto-sentiment-monitor" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Crypto Sentiment Monitor free?
Yes, Crypto Sentiment Monitor is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Crypto Sentiment Monitor support?
Crypto Sentiment Monitor is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Crypto Sentiment Monitor?
It is built and maintained by dzxiatian-crypto (@dzxiatian-crypto); the current version is v1.0.0.