Alphagbm Fear Score logo

Alphagbm Fear Score

CommunityPopular
AlphaGBM
alphagbm-fear-score

Per-ticker panic index (0-100) that weights six real signals: VIX, IV Rank, RSI-14, options volume anomaly, Put/Call ratio, and consecutive-down days. Scores ≥ 60 trigger a Bull Put Spread entry signal. Based on the FearDesk methodology; tested at ~10.8% annualized ROC for BPS entries on signal vs ~3.5% unconditional. Triggers: "fear score QQQ", "is NVDA oversold", "panic index SPY", "BPS signal TSLA", "is it fear time", "BPS entry timing", "when to sell put", "is AAPL panic", "contrarian entry signal", "oversold reading", "VIX plus RSI"

Overview

PublisherAlphaGBM
Repositoryskills
Skill namealphagbm-fear-score
Stars
2.7K
Forks
290
Bundled files
Instructions only
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by AlphaGBM on GitHub. Read the source before you install it.

Installation

Install the Alphagbm Fear Score AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/AlphaGBM/skills.git /tmp/skills
mkdir -p .claude/skills
cp -r /tmp/skills/skills/alphagbm-fear-score .claude/skills/alphagbm-fear-score
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Alphagbm Fear Score in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Alphagbm Fear Score on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Alphagbm Fear Score is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

AlphaGBM FearScore

A weighted composite panic gauge, per ticker. Reconstructs the FearDesk framework in one API call: six orthogonal fear signals, each scored 0–100, then combined with fixed weights into a single number. Score ≥ 60 is the historical trigger for Bull Put Spread entries.

Scoring Weights

IndicatorWeightSource
VIX level20%Global fear floor (market-wide)
IV Rank25%Per-ticker option premium expensiveness
RSI-1415%Oversold intensity
Volume anomaly15%Options or stock volume spike vs 5-day avg
Put/Call ratio15%Bearish positioning skew
Consecutive down days10%Selloff persistence

Each indicator has its own 0–100 sub-score with thresholds tuned so extreme readings contribute most. Missing inputs fall back to neutral values (and are flagged in components.*.fallback), so the endpoint never 500s on partial data.

Why It Exists

Most fear gauges are either VIX-only (miss per-ticker divergence) or opaque ("sentiment index: 72"). This breaks down exactly what drove the score so you can decide whether to trust it.

Backtest evidence: Across 146 live Bull Put Spread trades, entries at FearScore ≥ 60 delivered ~10.8% annualized ROC vs ~3.5% for unconditional entries — roughly 3× the alpha from a single filter. Use this as the market-timing layer on any premium-selling strategy.

How to Use

Input: A ticker symbol.

Output:

  • fear_score — weighted total 0-100
  • signal — boolean, true when fear_score ≥ threshold (default 60)
  • threshold — current trigger value
  • confidence — 0-1, fraction of the 6 indicators that used real (non-fallback) data
  • components.{vix,iv_rank,rsi,volume_anomaly,pc_ratio,consecutive_down}:
    • value — raw input
    • score — 0-100 per-indicator score
    • weight — contribution weight
    • fallback — true if neutral default was used

Example Queries:

  • fear score QQQ — Full breakdown of the 6 indicators for QQQ
  • is NVDA oversold right now — RSI + FearScore composite
  • BPS signal SPY — Check if entry threshold is hit
  • when should I sell put AAPL — Timing via FearScore ≥ 60 rule
  • how panicked is TSLA today — Per-ticker panic index with component breakdown
  • why is QQQ fear score low — Component-by-component explanation

Mock Data

Mock data in mock-data/fear-score/ — example responses at neutral / elevated / signal-triggered readings.

API Endpoint

GET /api/options/fear-score?ticker={SYMBOL}

Query params:

  • ticker (required) — stock symbol (US / HK / CN supported if whitelisted)

Response shape:

json
{
  "success": true,
  "ticker": "QQQ",
  "fear_score": 68.2,
  "signal": true,
  "threshold": 60,
  "confidence": 1.0,
  "components": {
    "vix": {"value": 28.4, "score": 82, "weight": 0.20, "fallback": false},
    "iv_rank": {"value": 78, "score": 78, "weight": 0.25, "fallback": false},
    "rsi": {"value": 24.1, "score": 88, "weight": 0.15, "fallback": false},
    "volume_anomaly": {"value": 2.3, "score": 72, "weight": 0.15, "fallback": false},
    "pc_ratio": {"value": 1.6, "score": 80, "weight": 0.15, "fallback": false},
    "consecutive_down": {"value": 3, "score": 60, "weight": 0.10, "fallback": false}
  },
  "timestamp": "2026-04-24T08:00:00"
}

Pricing: 1 option-analysis credit per call; per-ticker 5-min cache (cache hits free).

Related Skills

SkillRelevance
alphagbm-vix-statusMarket-wide version of the VIX input
alphagbm-iv-rankIV Rank (25% of the composite) standalone
alphagbm-options-strategyBPS/Sell-Put strategies that should respect the ≥60 signal

Powered by AlphaGBM — Real-data options & research intelligence. 10K+ users.

Frequently asked questions

What does the Alphagbm Fear Score AI skill do?

Per-ticker panic index (0-100) that weights six real signals: VIX, IV Rank, RSI-14, options volume anomaly, Put/Call ratio, and consecutive-down days. Scores ≥ 60 trigger a Bull Put Spread entry signal. Based on the FearDesk methodology; tested at ~10.8% annualized ROC for BPS entries on signal vs ~3.5% unconditional. Triggers: "fear score QQQ", "is NVDA oversold", "panic index SPY", "BPS signal TSLA", "is it fear time", "BPS entry timing", "when to sell put", "is AAPL panic", "contrarian entry signal", "oversold reading", "VIX plus RSI"

Why use Alphagbm Fear Score on TypingMind?

Because you install it once and use it with any model. Alphagbm Fear Score is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Alphagbm Fear Score in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/AlphaGBM/skills/tree/main/skills/alphagbm-fear-score. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Alphagbm Fear Score?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Alphagbm Fear Score?

As many as you like. As long as a model supports skills, you can use Alphagbm Fear Score with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Alphagbm Fear Score AI skill free?

Yes. It is published on GitHub by AlphaGBM under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇