Agent SkillsAlphaGBM/skills › alphagbm-fear-score

alphagbm-fear-score

GitHub

基于VIX、IV Rank等六项指标计算个股恐慌指数(0-100),得分≥60触发牛市看跌价差入场信号,提供详细成分分解与置信度。

skills/alphagbm-fear-score/SKILL.md AlphaGBM/skills

Trigger Scenarios

查询特定股票恐慌指数或恐惧分数 判断股票是否超卖或处于恐慌状态 获取牛市看跌价差(BPS)入场时机信号 分析恐慌指数的具体构成原因

Install

npx skills add AlphaGBM/skills --skill alphagbm-fear-score -g -y
More Options

Use without installing

npx skills use AlphaGBM/skills@alphagbm-fear-score

指定 Agent (Claude Code)

npx skills add AlphaGBM/skills --skill alphagbm-fear-score -a claude-code -g -y

安装 repo 全部 skill

npx skills add AlphaGBM/skills --all -g -y

预览 repo 内 skill

npx skills add AlphaGBM/skills --list

SKILL.md

Frontmatter
{
    "name": "alphagbm-fear-score",
    "globs": [
        "mock-data\/fear-score\/**"
    ],
    "description": "Per-ticker panic index (0-100) that weights six real signals: VIX, IV Rank, RSI-14,\noptions volume anomaly, Put\/Call ratio, and consecutive-down days. Scores ≥ 60\ntrigger a Bull Put Spread entry signal. Based on the FearDesk methodology; tested\nat ~10.8% annualized ROC for BPS entries on signal vs ~3.5% unconditional.\nTriggers: \"fear score QQQ\", \"is NVDA oversold\", \"panic index SPY\", \"BPS signal\nTSLA\", \"is it fear time\", \"BPS entry timing\", \"when to sell put\", \"is AAPL panic\",\n\"contrarian entry signal\", \"oversold reading\", \"VIX plus RSI\"\n"
}

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

Indicator Weight Source
VIX level 20% Global fear floor (market-wide)
IV Rank 25% Per-ticker option premium expensiveness
RSI-14 15% Oversold intensity
Volume anomaly 15% Options or stock volume spike vs 5-day avg
Put/Call ratio 15% Bearish positioning skew
Consecutive down days 10% 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:

{
  "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

Skill Relevance
alphagbm-vix-status Market-wide version of the VIX input
alphagbm-iv-rank IV Rank (25% of the composite) standalone
alphagbm-options-strategy BPS/Sell-Put strategies that should respect the ≥60 signal

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

Version History

  • c69fa1b Current 2026-07-05 20:18

Same Skill Collection

skills/alphagbm-alert/SKILL.md
skills/alphagbm-compare/SKILL.md
skills/alphagbm-earnings-crush/SKILL.md
skills/alphagbm-market-sentiment/SKILL.md
skills/alphagbm-options-score/SKILL.md
skills/alphagbm-polymarket/SKILL.md
skills/alphagbm-stock-analysis/SKILL.md
skills/alphagbm-unusual-activity/SKILL.md
skills/alphagbm-watchlist/SKILL.md
skills/alphagbm-bps-backtest/SKILL.md
skills/alphagbm-buffett-analysis/SKILL.md
skills/alphagbm-company-profile/SKILL.md
skills/alphagbm-duan-analysis/SKILL.md
skills/alphagbm-greeks/SKILL.md
skills/alphagbm-health-check/SKILL.md
skills/alphagbm-hedge-advisor/SKILL.md
skills/alphagbm-investment-thesis/SKILL.md
skills/alphagbm-iv-rank/SKILL.md
skills/alphagbm-macro-view/SKILL.md
skills/alphagbm-marks-cycle/SKILL.md
skills/alphagbm-options-strategy/SKILL.md
skills/alphagbm-pnl-simulator/SKILL.md
skills/alphagbm-take-profit/SKILL.md
skills/alphagbm-tepper-signal/SKILL.md
skills/alphagbm-theme-research/SKILL.md
skills/alphagbm-vix-status/SKILL.md
skills/alphagbm-vol-smile/SKILL.md
skills/alphagbm-vol-surface/SKILL.md

Metadata

Files
0
Version
c69fa1b
Hash
2fc07439
Indexed
2026-07-05 20:18

trang chủ - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-07-08 21:43
浙ICP备14020137号-1 $bản đồ khách truy cập$