ASP源码
PHP源码
.NET源码
JSP源码
本技能提供了一个可嵌入的恐惧与贪婪指数,专为高性能加密仪表板和交易应用设计。它通过即插即用的 React 和 HTML 组件提供实时情绪分析,并为基于终端的数据检索提供强大的 CLI。作为 Openclaw Skills 集合的一部分,它简化了在项目中添加市场情绪指标的过程,无需复杂的 API 集成或密钥。
该组件由 Strykr PRISM 提供支持,将市场波动和动量转化为可读的 0-100 刻度。它具有高度可定制性,支持多种主题和视觉变体(如仪表盘和柱状图),以适应任何设计系统。
下载入口:https://github.com/openclaw/skills/tree/main/skills/nextfrontierbuilds/fear-greed
从源直接安装技能的最快方式。
npx clawhub@latest install fear-greed
将技能文件夹复制到以下位置之一
全局模式~/.openclaw/skills/
工作区
/skills/
优先级:工作区 > 本地 > 内置
将此提示词复制到 OpenClaw 即可自动安装。
请帮我使用 Clawhub 安装 fear-greed。如果尚未安装 Clawhub,请先安装(npm i -g clawhub)。
要在您的环境中使用此技能,请按照以下步骤操作:
# 确保执行脚本可用
chmod +x fear-greed.sh
# (可选) 设置您的 PRISM 环境变量
export PRISM_URL=https://strykr-prism.up.railway.app
# 测试输出
./fear-greed.sh --json
该技能生成的结构化数据可与 Openclaw Skills 工作流无缝集成。下表描述了主要数据对象:
| 属性 | 描述 | 类型 |
|---|---|---|
| value | 0 到 100 的数值情绪分数 | 整数 |
| label | 描述性的情绪类别(例如:极度贪婪) | 字符串 |
| timestamp | 上次更新的 UTC 日期和时间 | ISO-8601 |
| history | 用于趋势映射的过去情绪值的可选数组 | 数组 |
name: fear-greed
description: Embeddable Fear & Greed Index for crypto dashboards. Real-time sentiment gauge. Drop-in React/HTML components. Works with AI agents, Claude, Cursor.
version: 1.1.1
keywords: fear-greed, crypto-sentiment, market-indicator, trading-widget, dashboard-component, react-widget, bitcoin-sentiment, ai, ai-agent, ai-coding, trading-bot, fintech, market-data, openclaw, moltbot, vibe-coding, agentic
Market mood at a glance. Embeddable Fear & Greed Index for crypto dashboards and trading apps.
Drop-in React and HTML components. Real-time updates. No API key required. Powered by Strykr PRISM.
# Get current Fear & Greed value
./fear-greed.sh
# Get JSON output
./fear-greed.sh --json
# Get historical data
./fear-greed.sh --history
| Endpoint | Description | Speed |
|---|---|---|
GET /market/fear-greed |
Current index | 229ms |
| Range | Label | Meaning |
|---|---|---|
| 0-25 | Extreme Fear | Buy opportunity? |
| 26-45 | Fear | Caution |
| 46-55 | Neutral | Wait and see |
| 56-75 | Greed | Take profits? |
| 76-100 | Extreme Greed | Possible top |
?? Crypto Fear & Greed Index
┌─────────────────────┐
│ │
│ 72 │
│ GREED │
│ │
│ ████████████████?? │
│ │
└─────────────────────┘
Last updated: 2026-01-28 13:15 UTC
{
"value": 72,
"label": "Greed",
"timestamp": "2026-01-28T13:15:00Z"
}
╭───────╮
╱ 72 ╲
│ GREED │
╲ ╱
╰───────╯
Fear & Greed: 72 (Greed)
████████████████??????????
┌────────┐
│ FG: 72 │
│ ?? │
└────────┘
import { FearGreedGauge } from '@strykr/fear-greed-widget';
function Dashboard() {
return (
);
}
| Theme | Background | Text |
|---|---|---|
dark |
#0D0D0D | #F5F3EF |
light |
#FFFFFF | #1A1A1A |
transparent |
none | auto |
Widget auto-refreshes every 5 minutes by default.
// Custom refresh interval (in milliseconds)
FearGreedGauge({ refreshInterval: 60000 }) // 1 minute
PRISM_URL=https://strykr-prism.up.railway.app
Built by @NextXFrontier