recipe-funding-rate-scan

Scan perpetual contracts for attractive funding rate carry opportunities.

23 stars

Best use case

recipe-funding-rate-scan is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Scan perpetual contracts for attractive funding rate carry opportunities.

Teams using recipe-funding-rate-scan should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/kraken-official-recipe-funding-rate-scan/SKILL.md --create-dirs "https://raw.githubusercontent.com/jiayaoqijia/cryptoskill/main/skills/exchanges/kraken-official-recipe-funding-rate-scan/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/kraken-official-recipe-funding-rate-scan/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How recipe-funding-rate-scan Compares

Feature / Agentrecipe-funding-rate-scanStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Scan perpetual contracts for attractive funding rate carry opportunities.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Funding Rate Scan

> **PREREQUISITE:** Load the following skills to execute this recipe: `kraken-funding-carry`, `kraken-futures-risk`

Scan available perpetual contracts, identify those with high funding rates, and evaluate carry potential.

## Steps

1. List all futures contracts: `kraken futures instruments -o json 2>/dev/null`
2. Get all tickers: `kraken futures tickers -o json 2>/dev/null`
3. Check funding rates for top-volume contracts:
   - `kraken futures historical-funding-rates PF_XBTUSD -o json 2>/dev/null`
   - `kraken futures historical-funding-rates PF_ETHUSD -o json 2>/dev/null`
   - `kraken futures historical-funding-rates PF_SOLUSD -o json 2>/dev/null`
4. Rank by annualized yield (rate * periods_per_year * 100)
5. Filter for consistently positive or negative rates (avoid noisy oscillations)
6. Check spot price for hedge calculation: `kraken ticker BTCUSD ETHUSD SOLUSD -o json 2>/dev/null`
7. Check futures account margin: `kraken futures accounts -o json 2>/dev/null`
8. Present ranked opportunities with annualized yield, direction, and required margin

Related Skills