analyzing-options-flow
Installation
SKILL.md
Analyzing Options Flow
Overview
Track and analyze crypto options flow on centralized derivatives exchanges (Deribit, OKX, Bybit) to identify institutional positioning, gauge market sentiment, and detect unusual activity in BTC and ETH options markets.
Prerequisites
- API credentials for at least one crypto derivatives exchange (Deribit API key recommended; OKX or Bybit as alternatives)
- Python 3.8+ with
requestsandwebsocket-clientlibraries installed - Optional:
pandasandnumpyfor advanced statistical analysis of flow data - Understanding of options terminology: strike price, expiry, implied volatility, delta, gamma, open interest, and premium
- Network access to exchange WebSocket feeds for real-time flow monitoring
Instructions
- Load exchange API credentials from
${CLAUDE_SKILL_DIR}/config/crypto-apis.envusing the Read tool to authenticate against derivatives exchange endpoints. - Run
Bash(crypto:options-*)to connect to the Deribit options data feed and pull the current options chain for BTC or ETH, including all active strikes and expiries. - Retrieve open interest data across all strike prices and expiration dates to build an open interest heatmap showing where positions are concentrated.
- Calculate the aggregate put/call ratio by volume and by open interest to assess overall market sentiment (ratio above 1.0 indicates bearish bias; below 1.0 indicates bullish).
Related skills