Installation

clawhub install nextfrontierbuilds/fear-greed

Summary

Market mood at a glance. Embeddable Fear & Greed Index for crypto dashboards and trading apps.

SKILL.md

Crypto Sentiment Widget

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.

Quick Usage

bash
# Get current Fear & Greed value
./fear-greed.sh

# Get JSON output
./fear-greed.sh --json

# Get historical data
./fear-greed.sh --history

PRISM Endpoint

EndpointDescriptionSpeed
GET /market/fear-greedCurrent index229ms

Index Values

RangeLabelMeaning
0-25Extreme FearBuy opportunity?
26-45FearCaution
46-55NeutralWait and see
56-75GreedTake profits?
76-100Extreme GreedPossible top

Output Formats

Terminal (Default)

text
๐Ÿ“Š Crypto Fear & Greed Index

   โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
   โ”‚                     โ”‚
   โ”‚         72          โ”‚
   โ”‚       GREED         โ”‚
   โ”‚                     โ”‚
   โ”‚  โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–‘โ–‘ โ”‚
   โ”‚                     โ”‚
   โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

   Last updated: 2026-01-28 13:15 UTC

JSON

json
{
  "value": 72,
  "label": "Greed",
  "timestamp": "2026-01-28T13:15:00Z"
}

Widget Variants

1. Gauge (Circle)

text
    โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ
   โ•ฑ    72   โ•ฒ
  โ”‚   GREED   โ”‚
   โ•ฒ         โ•ฑ
    โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ

2. Bar (Horizontal)

text
Fear & Greed: 72 (Greed)
โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘

3. Badge (Compact)

text
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚ FG: 72 โ”‚
โ”‚   ๐Ÿ˜€   โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

Embed Options

React Component

jsx
import { FearGreedGauge } from '@strykr/fear-greed-widget';

function Dashboard() {
  return (
    <FearGreedGauge 
      theme="dark"
      size="md"
      variant="gauge"
      refreshInterval={300000}  // 5 minutes
    />
  );
}

HTML Embed

html
<div id="fear-greed-widget"></div>
<script src="https://cdn.strykr.com/fear-greed.js"></script>
<script>
  StrykrWidget.FearGreed({
    element: '#fear-greed-widget',
    theme: 'dark',
    variant: 'gauge'
  });
</script>

iframe

html
<iframe 
  src="https://widgets.strykr.com/fear-greed?theme=dark&variant=gauge"
  width="200" 
  height="200"
  frameborder="0"
></iframe>

Themes

ThemeBackgroundText
dark#0D0D0D#F5F3EF
light#FFFFFF#1A1A1A
transparentnoneauto

Auto-Refresh

Widget auto-refreshes every 5 minutes by default.

javascript
// Custom refresh interval (in milliseconds)
FearGreedGauge({ refreshInterval: 60000 })  // 1 minute

Use Cases

  1. Trading Dashboard โ€” Quick sentiment check
  2. Blog/Newsletter โ€” Embed in market updates
  3. Discord Server โ€” Daily sentiment bot
  4. Portfolio App โ€” Contextual indicator

Environment Variables

bash
PRISM_URL=https://strykr-prism.up.railway.app

Built by @NextXFrontier

Recommended skills

Browse all โ†’

Related guides

Hand-picked reading to help you choose, install, and use agent skills.