recipe-funding-rate-scan
GitHub扫描永续合约,识别高资金费率套利机会并评估收益潜力。通过获取合约列表、历史费率和现货价格,计算年化收益率,筛选稳定正负费率品种,结合保证金情况呈现带方向的交易建议。
Trigger Scenarios
Install
npx skills add krakenfx/kraken-cli --skill recipe-funding-rate-scan -g -y
SKILL.md
Frontmatter
{
"name": "recipe-funding-rate-scan",
"version": "1.0.0",
"metadata": {
"openclaw": {
"domain": "strategy",
"category": "recipe"
},
"requires": {
"bins": [
"kraken"
],
"skills": [
"kraken-funding-carry",
"kraken-futures-risk"
]
}
},
"description": "Scan perpetual contracts for attractive funding rate carry opportunities."
}
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
- List all futures contracts:
kraken futures instruments -o json 2>/dev/null - Get all tickers:
kraken futures tickers -o json 2>/dev/null - Check funding rates for top-volume contracts:
kraken futures historical-funding-rates PF_XBTUSD -o json 2>/dev/nullkraken futures historical-funding-rates PF_ETHUSD -o json 2>/dev/nullkraken futures historical-funding-rates PF_SOLUSD -o json 2>/dev/null
- Rank by annualized yield (rate * periods_per_year * 100)
- Filter for consistently positive or negative rates (avoid noisy oscillations)
- Check spot price for hedge calculation:
kraken ticker BTCUSD ETHUSD SOLUSD -o json 2>/dev/null - Check futures account margin:
kraken futures accounts -o json 2>/dev/null - Present ranked opportunities with annualized yield, direction, and required margin
If you hit a mismatch between what you are trying to do and the CLI's interface or responses — including a mismatch between this skill and the installed CLI version's contract — feel free to submit feedback with kraken feedback.
Version History
- aa56e59 Current 2026-08-20 04:46
- aa32814 2026-07-25 10:29


