| name | analyzing-market-sentiment |
| description | Analyze cryptocurrency market sentiment using Fear & Greed Index, news analysis, and market momentum.
Use when gauging overall market mood, checking if markets are fearful or greedy, or analyzing sentiment for specific coins.
Trigger with phrases like "analyze crypto sentiment", "check market mood", "is the market fearful", "sentiment for Bitcoin", or "Fear and Greed index".
|
| allowed-tools | Read, Bash(crypto:sentiment-*) |
| version | 1.24.0 |
| author | Jeremy Longshore <jeremy@intentsolutions.io> |
| license | MIT |
| tags | ["crypto","analyzing-market"] |
| compatibility | Designed for Claude Code, also compatible with Codex and OpenClaw |
Analyzing Market Sentiment
Overview
Cryptocurrency market sentiment analysis combining Fear & Greed Index, news keyword analysis, and price/volume momentum into a composite 0-100 score.
Prerequisites
- Python 3.8+ installed
- Dependencies:
pip install requests
- Internet connectivity for API access (Alternative.me, CoinGecko)
- Optional:
crypto-news-aggregator skill for enhanced news analysis
Instructions
-
Assess user intent - determine what analysis is needed:
- Overall market: no specific coin, general sentiment
- Coin-specific: extract symbol (BTC, ETH, etc.)
- Quick vs detailed: quick score or full component breakdown
-
Run sentiment analysis with appropriate options:
python ${CLAUDE_SKILL_DIR}/scripts/sentiment_analyzer.py
python ${CLAUDE_SKILL_DIR}/scripts/sentiment_analyzer.py --coin BTC
python ${CLAUDE_SKILL_DIR}/scripts/sentiment_analyzer.py --detailed
python ${CLAUDE_SKILL_DIR}/scripts/sentiment_analyzer.py --period 7d --detailed
-
Export results for trading models or analysis:
python ${CLAUDE_SKILL_DIR}/scripts/sentiment_analyzer.py --format json --output sentiment.json
-
Present results to the user:
- Show composite score and classification prominently
- Explain what the sentiment reading means
- Highlight extreme readings (potential contrarian signals)
- For detailed mode, show component breakdown with weights
Output
Composite sentiment score (0-100) with classification and weighted component breakdown. Extreme readings serve as contrarian indicators:
==============================================================================
MARKET SENTIMENT ANALYZER Updated: 2026-01-14 15:30 # 2026 - current year timestamp
==============================================================================
COMPOSITE SENTIMENT
------------------------------------------------------------------------------
Score: 65.5 / 100 Classification: GREED
Component Breakdown:
- Fear & Greed Index: 72.0 (weight: 40%) -> 28.8 pts
- News Sentiment: 58.5 (weight: 40%) -> 23.4 pts
- Market Momentum: 66.5 (weight: 20%) -> 13.3 pts
Interpretation: Market is moderately greedy. Consider taking profits or
reducing position sizes. Watch for reversal signals.
==============================================================================