TR

tracking-crypto-derivatives

Aggregates real-time derivatives data across CEX and DEX platforms to identify market sentiment.

Install

mkdir -p .claude/skills/tracking-crypto-derivatives && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/1190" && unzip -o skill.zip -d .claude/skills/tracking-crypto-derivatives && rm skill.zip

Installs to .claude/skills/tracking-crypto-derivatives

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Track cryptocurrency futures, options, and perpetual swaps with funding
71 charsno explicit “when” trigger
Intermediate

Key capabilities

  • Check funding rates across exchanges
  • Analyze open interest to gauge market positioning
  • Monitor liquidations to find support/resistance clusters
  • Analyze options market for IV, put/call ratio, and max pain
  • Calculate basis for spot-futures arbitrage opportunities
  • Run full dashboard for complete derivatives overview

How it works

This skill aggregates derivatives data from various exchanges to provide insights into funding rates, open interest, liquidations, and options markets, using Python scripts with specific commands.

Inputs & outputs

You give it
Cryptocurrency symbols and optional parameters like history, min-size, expiry, or min-yield
You get back
Structured reports including Funding Rate Report, Open Interest Report, Liquidation Heatmap, Options Overview, and Basis Report

When to use tracking-crypto-derivatives

  • Monitor BTC perpetual swap funding rates
  • Analyze market sentiment via open interest
  • Find liquidation levels
  • Research crypto options flow

About this skill

Tracking Crypto Derivatives

Overview

Aggregate funding rates, open interest, liquidations, and options data across CEX and DEX derivatives exchanges to produce actionable trading insights.

Supported Markets: Perpetual Swaps (Binance, Bybit, OKX, Deribit, BitMEX), Quarterly Futures, Options (Deribit, OKX, Bybit), DEX Perpetuals (dYdX, GMX, Drift Protocol).

Prerequisites

  • Python 3.8+ installed
  • Network access to exchange APIs
  • Optional: API keys for higher rate limits
  • Understanding of derivatives concepts (funding, OI, basis)

Instructions

  1. Check funding rates across exchanges to identify sentiment and arbitrage opportunities:

    python derivatives_tracker.py funding BTC
    python derivatives_tracker.py funding BTC ETH SOL
    python derivatives_tracker.py funding BTC --history 7d
    
    • Positive funding (>0.01%): Longs pay shorts, bullish sentiment
    • Negative funding (<-0.01%): Shorts pay longs, bearish sentiment
    • Extreme funding (>0.1%): Potential contrarian opportunity
  2. Analyze open interest to gauge market positioning and trend strength:

    python derivatives_tracker.py oi BTC
    python derivatives_tracker.py oi BTC --changes
    python derivatives_tracker.py oi BTC --divergence
    
    • Rising OI + Rising Price = strong bullish trend
    • Rising OI + Falling Price = strong bearish trend
    • Falling OI + Rising Price = short covering rally
    • Falling OI + Falling Price = long liquidations
  3. Monitor liquidations to find support/resistance clusters:

    python derivatives_tracker.py liquidations BTC
    python derivatives_tracker.py liquidations BTC --recent
    python derivatives_tracker.py liquidations BTC --min-size 100000  # 100000 = minimum USD liquidation size filter
    
  4. Analyze options market for IV, put/call ratio, and max pain:

    python derivatives_tracker.py options BTC
    python derivatives_tracker.py options BTC --pcr
    python derivatives_tracker.py options BTC --expiry 2025-01-31  # 2025 = target expiry year
    
  5. Calculate basis for spot-futures arbitrage opportunities:

    python derivatives_tracker.py basis BTC
    python derivatives_tracker.py basis BTC --quarterly
    python derivatives_tracker.py basis --all
    
  6. Run full dashboard for comprehensive derivatives overview:

    python derivatives_tracker.py dashboard BTC
    python derivatives_tracker.py dashboard BTC ETH SOL
    python derivatives_tracker.py dashboard BTC --output json
    

Output

The skill produces structured reports per market type:

  • Funding Rate Report: Current, 24h avg, 7d avg rates per exchange with annualized yield and sentiment
  • Open Interest Report: OI per exchange with 24h/7d changes, share %, and long/short ratio
  • Liquidation Heatmap: Long/short liquidation clusters by price level with USD density
  • Options Overview: Put/call ratio, IV rank, max pain, and large flow alerts
  • Basis Report: Spot-perp and quarterly basis with annualized carry rates

See ${CLAUDE_SKILL_DIR}/references/implementation.md for detailed output format examples.

Error Handling

ErrorCauseFix
ERR_RATE_LIMITToo many API requestsReduce frequency or add API key
ERR_EXCHANGE_DOWNExchange API unavailableTry alternative exchange
ERR_SYMBOL_INVALIDWrong symbol formatUse BTC, ETH (not BTCUSDT)

Examples

Morning derivatives check - Scan funding, OI, and liquidations for top assets:

python derivatives_tracker.py dashboard BTC ETH SOL

Funding rate arbitrage - Alert when funding exceeds threshold for cash-and-carry:

python derivatives_tracker.py funding BTC --alert-threshold 0.08

Pre-expiry options analysis - Check max pain and IV before Friday expiry:

python derivatives_tracker.py options BTC --expiry friday

Basis trading scan - Find all pairs with annualized yield above 5%:

python derivatives_tracker.py basis --all --min-yield 5  # 5 = minimum annualized yield %

Resources

  • Coinglass: Aggregated derivatives data
  • Exchange APIs: Binance, Bybit, OKX, Deribit
  • The Graph: DEX perpetuals data
  • ${CLAUDE_SKILL_DIR}/references/implementation.md - Detailed output formats, options/basis guides, key concepts

Prerequisites

Python 3.8+ installedNetwork access to exchange APIsUnderstanding of derivatives concepts (funding, OI, basis)

Limitations

  • Rate limits can be encountered if too many API requests are made
  • Exchange API may be unavailable, causing `ERR_EXCHANGE_DOWN`
  • Invalid symbol format can lead to `ERR_SYMBOL_INVALID`

How it compares

This skill automates the aggregation and analysis of diverse crypto derivatives data, providing structured reports and actionable insights, which differs from manually collecting and interpreting data from individual exchanges.

Compared to similar skills

tracking-crypto-derivatives side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
tracking-crypto-derivatives (this skill)427dReviewIntermediate
model-usage52moReviewBeginner
weights-and-biases37moReviewIntermediate
tooluniverse-pharmacovigilance32moNo flagsAdvanced

Try saying

Example prompts that trigger this skill in your AI assistant.

More by jeremylongshore

View all by jeremylongshore

analyzing-logs

jeremylongshore

Analyze application logs to detect performance issues, identify error patterns, and improve stability by extracting key insights.

14123

ollama-setup

jeremylongshore

Configure auto-configure Ollama when user needs local LLM deployment, free AI alternatives, or wants to eliminate hosted API costs. Trigger phrases: "install ollama", "local AI", "free LLM", "self-hosted AI", "replace OpenAI", "no API costs". Use when appropriate context detected. Trigger with relevant phrases based on skill purpose.

1167

backtesting-trading-strategies

jeremylongshore

Backtest crypto and traditional trading strategies against historical data. Calculates performance metrics (Sharpe, Sortino, max drawdown), generates equity curves, and optimizes strategy parameters. Use when user wants to test a trading strategy, validate signals, or compare approaches. Trigger with phrases like "backtest strategy", "test trading strategy", "historical performance", "simulate trades", "optimize parameters", or "validate signals".

1071

generating-database-seed-data

jeremylongshore

Process this skill enables AI assistant to generate realistic test data and database seed scripts for development and testing environments. it uses faker libraries to create realistic data, maintains relational integrity, and allows configurable data volumes. u... Use when working with databases or data models. Trigger with phrases like 'database', 'query', or 'schema'.

1033

cursor-codebase-indexing

jeremylongshore

Execute set up and optimize Cursor codebase indexing. Triggers on "cursor index setup", "codebase indexing", "index codebase", "cursor semantic search". Use when working with cursor codebase indexing functionality. Trigger with phrases like "cursor codebase indexing", "cursor indexing", "cursor".

885

testing-mobile-apps

jeremylongshore

Execute mobile app testing on iOS and Android devices/simulators. Use when performing specialized testing. Trigger with phrases like "test mobile app", "run iOS tests", or "validate Android functionality".

810

You might also like

model-usage

openclaw

Use CodexBar CLI local cost usage to summarize per-model usage for Codex or Claude, including the current (most recent) model or a full model breakdown. Trigger when asked for model-level usage/cost data from codexbar, or when you need a scriptable per-model summary from codexbar cost JSON.

548

weights-and-biases

davila7

Track ML experiments with automatic logging, visualize training in real-time, optimize hyperparameters with sweeps, and manage model registry with W&B - collaborative MLOps platform

325

tooluniverse-pharmacovigilance

mims-harvard

Analyze drug safety signals from FDA adverse event reports, label warnings, and pharmacogenomic data. Calculates disproportionality measures (PRR, ROR), identifies serious adverse events, assesses pharmacogenomic risk variants. Use when asked about drug safety, adverse events, post-market surveillance, or risk-benefit assessment.

323

analyzing-mempool

jeremylongshore

Monitor blockchain mempools for pending transactions, gas analysis, and MEV opportunities. Use when analyzing pending transactions, optimizing gas prices, or researching MEV. Trigger with phrases like "check mempool", "scan pending txs", "find MEV", "gas price analysis", or "pending swaps".

318

agent-session-monitor

alibaba

Real-time agent conversation monitoring - monitors Higress access logs, aggregates conversations by session, tracks token usage. Supports web interface for viewing complete conversation history and costs. Use when users ask about current session token consumption, conversation history, or cost statistics.

26

video-comparer

daymade

This skill should be used when comparing two videos to analyze compression results or quality differences. Generates interactive HTML reports with quality metrics (PSNR, SSIM) and frame-by-frame visual comparisons. Triggers when users mention "compare videos", "video quality", "compression analysis", "before/after compression", or request quality assessment of compressed videos.

15

Search skills

Search the agent skills registry