Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
From cryptozavr
Use when you've just received output from a cryptozavr MCP tool (ticker, OHLCV, orderbook, trades) and need to read it correctly. Covers field meanings, staleness flags, reason_codes, and common pitfalls.
npx claudepluginhub evgenygurin/cryptozavr --plugin cryptozavrHow this skill is triggered — by the user, by Claude, or both
Slash command
/cryptozavr:interpreting-market-dataThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
All tool outputs include:
Guides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.
Share bugs, ideas, or general feedback.
All tool outputs include:
venue, symbol — where the data came fromreason_codes: list[str] — ordered audit trail of the 5-handler chain:
venue:healthy|degraded|rate_limited|downsymbol:foundcache:bypassed (force_refresh=true)cache:hit (Supabase returned cached) OR cache:miss + provider:calledcache:write_failed (upsert couldn't persist; response still valid)staleness: "fresh"|"recent"|"stale"|"expired"confidence: "high"|"medium"|"low"cache_hit: boollast is the latest trade price. bid/ask may be None for CoinGecko (aggregator, no order book).volume_24h is in BASE units (BTC, not USDT).observed_at_ms is when the exchange stamped the data — may lag by seconds-minutes.candles: list[OHLCVCandleDTO] ordered oldest → newest.closed: bool — the last candle may be closed=false (still in-progress).range_start_ms / range_end_ms bracket the series; useful for windowing.bids sorted highest-price-first; asks lowest-price-first.spread = asks[0].price - bids[0].price.spread_bps = spread / midpoint × 10000 — 10 bps is tight, 50 bps is wide.bids or asks → spread is None.trades ordered newest → oldest.side: "buy"|"sell" from the taker's perspective (taker buy = demand).trade_id may be null for CoinGecko.staleness == "stale" or "expired" — suggest force_refresh=true.cache_hit=true on volatile prices (tick-by-tick). Warn if the caller needs fresh data.cache:write_failed in reasons — data is real, but the Supabase write didn't land. Non-fatal.venue:degraded — upstream exchange is slow/errorful. Reduce expectations.