8-k-scanner
Scan SEC 8-K disclosures across a single ticker or a watchlist using Massive's pre-parsed disclosure taxonomy. Groups the underlying rows by filing (one 8-K…
Surface 24h crypto volatility and microstructure anomalies across a universe (default top 10) as a Bloomberg crypto desk / Cheddar-Flow-for-crypto-style stream. Per-name: realized vol spike (vs 30d distribution), volume anomaly (vs 30d avg), cross-exchange basis (max bid-ask
$ npx -y skills add rgourley/quant-garage --skill crypto-vol-scanner --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/crypto-vol-scannerContext preview
The summary Claude sees to decide when to auto-load this skill.
Surface 24h crypto volatility and microstructure anomalies across a universe (default top 10) as a Bloomberg crypto desk / Cheddar-Flow-for-crypto-style stream. Per-name: realized vol spike (vs 30d distribution), volume anomaly (vs 30d avg), cross-exchange basis (max bid-ask
name: crypto-vol-scanner description: Surface 24h crypto volatility and microstructure anomalies across a universe (default top 10) as a Bloomberg crypto desk / Cheddar-Flow-for-crypto-style stream. Per-name: realized vol spike (vs 30d distribution), volume anomaly (vs 30d avg), cross-exchange basis (max bid-ask divergence across Coinbase / Binance / Kraken / Bitstamp / Bitfinex), and 24h move z-score. Ranked by composite impact. Real-time on Currencies Business; spot-snapshot accurate within seconds across all paid tiers.
You hand over a crypto universe and a window. The skill pulls each name's current snapshot, last 200 ticks across exchanges, and 30 days of hourly
distribution, flags volume anomalies, surfaces cross-exchange basis when prints disagree, z-scores the 24h move against the trailing daily return distribution, ranks every name by a composite impact score, and emits a stream of the most notable events.
This is the workflow a crypto desk runs at the open. Ten names, four signal types, ranked by what actually moved or is acting weird right now. Unlike a CoinGecko screener or TradingView heatmap, crypto-vol- scanner ranks by statistical context (percentiles, z-scores, multipliers against trailing distributions) rather than absolute move size, and ships the methodology alongside the output.
First crypto skill in the suite. Validates a third asset class beyond stocks and options.
vol + volume + basis state
weird in crypto right now"
trend resumption, persistent cross-exchange basis that signals exchange-specific flow
LINK, DOT, POL). POL is the new ticker for the former MATIC; the skill auto-substitutes
tiers return real-time spot and tick-level trades
The skill runs at two fidelity tiers.
spot, tick-level trades for cross-exchange basis, full 30d hourly and daily aggregate history. Sub-second updates on the snapshot. This is the default tier.
may be 15-min delayed depending on plan specifics. The methodology is identical; only the snapshot freshness differs. Volume and vol numbers are computed from historical aggregates, which are stable.
Two output layers from one analysis.
**Layer 1: canonical JSON** matching [`output-schema.json`](./output-schema.json). Per-event fields: ticker, base_currency, quote_currency, signal_type (vol_spike | volume_anomaly | cross_exchange | tail_move | quiet | combined), realized_vol_pct, vol_percentile_ttm, vol_vs_avg_ratio, volume_24h_usd, volume_vs_avg_ratio, move_24h_pct, move_zscore, basis_bps (when cross-exchange), exchanges_compared, context_line. UIs, alert pipelines, and downstream agents consume this.
**Layer 2: rendered stream** in Bloomberg crypto desk / Cheddar-Flow- for-crypto style. Three lines per event, optional `↳` continuation line. Format rules in [`references/rendering.md`](./references/rendering.md). Compact, scanable, key:value pairs. Claude Code users read this.
1. For each ticker in the universe, pull the bulk snapshot via `/v2/snapshot/locale/global/markets/crypto/tickers?tickers=X:BTCUSD,X:ETHUSD,...`. The `prevDay` block is the "last 24h" reference (last completed UTC day); `lastTrade.p` is current spot. POL is auto-substituted for the deprecated MATIC ticker. 2. For each ticker, pull `/v2/aggs/ticker/{X:BASEUSD}/range/1/day/{from}/{to}` over the trailing TTM. Used for the 30-day daily-return distribution and the trailing 30d daily-volume baseline. See [`references/move-zscore.md`](./references/move-zscore.md). 3. For each ticker, pull `/v2/aggs/ticker/{X:BASEUSD}/range/1/hour/{from}/{to}` over the trailing 32 days. Used to compute current 24h realized vol (close-to-close log returns, annualized × sqrt(365 × 24)) and to build the trailing 30-day rolling-24h realized-vol distribution. Methodology in [`references/realized-vol-methodology.md`](./references/realized-vol-methodology.md). 4. For each ticker, compute volume anomaly per [`references/volume-anomalies.md`](./references/volume-anomalies.md): `prevDay.v * prevDay.vw` (USD) vs trailing 30d daily-volume average from the daily aggs. Threshold for flagging: > 2x. 5. For each ticker, pull `/v3/trades/{X:BASEUSD}?limit=200&order=desc` and group by exchange (Coinbase=1, Bitfinex=2, Bitstamp=6, Binance=10, Kraken=23). Compute the max minus min of the per-exchange most-recent price as the cross-exchange basis in bps. Methodology and caveats in [`references/cross-exchange-basis.md`](./references/cross-exchange-basis.md). 6. Compose per-ticker signals. Tag the dominant signal type (`vol_spike`, `volume_anomaly`, `cross_exchange`, `tail_move`, `quiet`, or `combined` when multiple fire). Rank by composite impact = max(vol_zscore, volume_zscore, abs(move_zscore), basis_bps_zscore) per [`references/signal-ranking.md`](./references/signal-ranking.md). Emit the top N (default 15).
rate-limit handling, pagination, and the best-price fallback chain for spot
Stream mode is the format Bloomberg's crypto desk pages, Cheddar Flow, and Coinbase Institutional desk reports converge on for "here's what's weird right now": per-event bl
Trade like a pro. Without the terminal. View the full landing page → Quant and equity research tools that run inside Claude, or behind your own UI.
Scan SEC 8-K disclosures across a single ticker or a watchlist using Massive's pre-parsed disclosure taxonomy. Groups the underlying rows by filing (one 8-K…
Track sell-side analyst positioning on a name via Benzinga Analyst Ratings. Pulls every rating event over the lookback window, classifies each as upgrade /…
Build a clean, point-in-time, ready-to-backtest OHLCV dataset for a US equity universe across an arbitrary date window. Emits parquet plus a manifest plus an…
Bayesian Online Change-Point Detection (BOCPD) on a ticker's daily log returns. Detects points in time where the return-generating distribution changed (regime…
Single-commodity macro read. Answers "is this commodity in a winning or losing macro setup right now" and names the macro driver that dominates it. Pulls one…
Reconcile a position file against splits, dividends, and spinoffs to catch breaks before they hit P&L or T+1 settlement. Use when an operator hands over a CSV…