重要前提
安装AI Skills的关键前提是:必须科学上网,且开启TUN模式,这一点至关重要,直接决定安装能否顺利完成,在此郑重提醒三遍:科学上网,科学上网,科学上网。查看完整安装教程 →
analyzing-market-sentiment by jeremylongshore/claude-code-plugins-plus-skills
npx skills add https://github.com/jeremylongshore/claude-code-plugins-plus-skills --skill analyzing-market-sentiment结合恐惧与贪婪指数、新闻关键词分析以及价格/成交量动量,生成一个 0-100 分的综合评分,用于加密货币市场情绪分析。
pip install requestscrypto-news-aggregator 技能用于增强新闻分析评估用户意图 - 确定需要何种分析: * 整体市场:无特定币种,通用情绪 * 特定币种:提取符号(BTC, ETH 等) * 快速与详细:快速评分或完整的组件细分
使用适当的选项运行情绪分析:
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
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
3. 导出结果 用于交易模型或分析:
python ${CLAUDE_SKILL_DIR}/scripts/sentiment_analyzer.py --format json --output sentiment.json
4. 向用户展示结果: * 突出显示综合评分和分类 * 解释情绪读数的含义 * 高亮极端读数(潜在的反向信号) * 对于详细模式,显示带权重的组件细分
包含分类和加权组件细分的综合情绪评分(0-100)。极端读数可作为反向指标:
==============================================================================
市场情绪分析器 更新时间:2026-01-14 15:30 # 2026 - 当前年份时间戳
==============================================================================
综合情绪
------------------------------------------------------------------------------
评分:65.5 / 100 分类:贪婪
组件细分:
- 恐惧与贪婪指数: 72.0 (权重:40%) -> 28.8 分
- 新闻情绪: 58.5 (权重:40%) -> 23.4 分
- 市场动量: 66.5 (权重:20%) -> 13.3 分
解读:市场处于中度贪婪状态。考虑获利了结或减少持仓规模。留意反转信号。
==============================================================================
| 错误 | 原因 | 解决方案 |
|---|---|---|
| 恐惧与贪婪指数不可用 | API 宕机 | 使用缓存值并发出警告 |
| 新闻获取失败 | 网络问题 | 降低新闻组件的权重 |
| 无效币种 | 未知符号 | 继续进行市场范围分析 |
有关全面的错误处理,请参阅 ${CLAUDE_SKILL_DIR}/references/errors.md。
从快速检查到自定义权重的深度分析的情绪分析模式:
# 快速市场情绪
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 --weights "news:0.5,fng:0.3,momentum:0.2"
# 每周情绪趋势
python ${CLAUDE_SKILL_DIR}/scripts/sentiment_analyzer.py --period 7d --detailed
${CLAUDE_SKILL_DIR}/references/implementation.md - CLI 选项、分类、JSON 格式、反向理论${CLAUDE_SKILL_DIR}/references/errors.md - 全面的错误处理${CLAUDE_SKILL_DIR}/references/examples.md - 详细使用示例${CLAUDE_SKILL_DIR}/config/settings.yaml - 配置选项每周安装数
68
仓库
GitHub 星标数
1.8K
首次出现
2026年2月1日
安全审计
安装于
gemini-cli66
codex66
cursor66
opencode65
amp64
cline64
Cryptocurrency market sentiment analysis combining Fear & Greed Index, news keyword analysis, and price/volume momentum into a composite 0-100 score.
pip install requestscrypto-news-aggregator skill for enhanced news analysisAssess user intent - determine what analysis is needed:
Run sentiment analysis with appropriate options:
python ${CLAUDE_SKILL_DIR}/scripts/sentiment_analyzer.py
# Coin-specific sentiment
python ${CLAUDE_SKILL_DIR}/scripts/sentiment_analyzer.py --coin BTC
# Detailed breakdown with all components
python ${CLAUDE_SKILL_DIR}/scripts/sentiment_analyzer.py --detailed
# Custom time period
python ${CLAUDE_SKILL_DIR}/scripts/sentiment_analyzer.py --period 7d --detailed
3. Export results for trading models or analysis:
python ${CLAUDE_SKILL_DIR}/scripts/sentiment_analyzer.py --format json --output sentiment.json
4. 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
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.
==============================================================================
| Error | Cause | Solution |
|---|---|---|
| Fear & Greed unavailable | API down | Uses cached value with warning |
| News fetch failed | Network issue | Reduces weight of news component |
| Invalid coin | Unknown symbol | Proceeds with market-wide analysis |
See ${CLAUDE_SKILL_DIR}/references/errors.md for comprehensive error handling.
Sentiment analysis patterns from quick checks to custom-weighted deep analysis:
# Quick market sentiment
python ${CLAUDE_SKILL_DIR}/scripts/sentiment_analyzer.py
# Bitcoin-specific sentiment
python ${CLAUDE_SKILL_DIR}/scripts/sentiment_analyzer.py --coin BTC
# Detailed analysis with component breakdown
python ${CLAUDE_SKILL_DIR}/scripts/sentiment_analyzer.py --detailed
# Custom weights emphasizing news
python ${CLAUDE_SKILL_DIR}/scripts/sentiment_analyzer.py --weights "news:0.5,fng:0.3,momentum:0.2"
# Weekly sentiment trend
python ${CLAUDE_SKILL_DIR}/scripts/sentiment_analyzer.py --period 7d --detailed
${CLAUDE_SKILL_DIR}/references/implementation.md - CLI options, classifications, JSON format, contrarian theory${CLAUDE_SKILL_DIR}/references/errors.md - Comprehensive error handling${CLAUDE_SKILL_DIR}/references/examples.md - Detailed usage examples${CLAUDE_SKILL_DIR}/config/settings.yaml - Configuration optionsWeekly Installs
68
Repository
GitHub Stars
1.8K
First Seen
Feb 1, 2026
Security Audits
Gen Agent Trust HubWarnSocketPassSnykWarn
Installed on
gemini-cli66
codex66
cursor66
opencode65
amp64
cline64
DOCX文件创建、编辑与分析完整指南 - 使用docx-js、Pandoc和Python脚本
55,000 周安装