recipe-funding-rate-scan
Scan perpetual contracts for attractive funding rate carry opportunities.
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
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/kraken-official-recipe-funding-rate-scan/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How recipe-funding-rate-scan Compares
| Feature / Agent | recipe-funding-rate-scan | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/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
recipe-withdrawal-to-cold-storage
Safely withdraw funds to a pre-approved cold storage address.
recipe-weekly-rebalance
Run a weekly portfolio rebalance to maintain target asset allocations.
recipe-trailing-stop-runner
Ride a trend with a trailing stop that locks in profits on reversal.
recipe-track-orderbook-depth
Monitor order book depth and bid-ask imbalance for liquidity signals.
recipe-subaccount-capital-rotation
Rotate capital between subaccounts based on strategy performance.
recipe-start-dca-bot
Set up and run a dollar cost averaging bot from paper test to live.
recipe-price-level-alerts
Set up price level alerts that notify when key levels are crossed.
recipe-portfolio-snapshot-csv
Export a portfolio snapshot with balances and valuations to CSV.
recipe-paper-strategy-backtest
Backtest a trading strategy using paper trading against live prices.
recipe-multi-pair-breakout-watch
Monitor multiple pairs for price breakouts from defined ranges.
recipe-morning-market-brief
Generate a morning market summary with prices, volume, and portfolio state.
recipe-launch-grid-bot
Deploy a grid trading bot with paper validation and live safety controls.