원클릭으로
kraken-funding-carry
Earn funding rate payments by positioning on the paying side of perpetuals.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Earn funding rate payments by positioning on the paying side of perpetuals.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Connect MCP clients to kraken-cli for native tool calling without subprocess wrappers.
Install kraken-cli, create API credentials, and go from paper trading to live in under five minutes.
Discover staking strategies, allocate funds, and track earn positions.
Place, manage, and monitor futures orders across the full lifecycle.
Test strategy logic on paper trading before touching live funds.
Promote a validated paper strategy to live trading with safety checks.
SOC 직업 분류 기준
| name | kraken-funding-carry |
| version | 1.0.0 |
| description | Earn funding rate payments by positioning on the paying side of perpetuals. |
| metadata | {"openclaw":{"category":"finance"},"requires":{"bins":["kraken"],"skills":["kraken-futures-trading","kraken-futures-risk"]}} |
Use this skill for:
Perpetual futures charge periodic funding payments between longs and shorts. When the funding rate is positive, longs pay shorts. When negative, shorts pay longs. A carry strategy positions on the receiving side and hedges with spot to remain market-neutral.
kraken futures historical-funding-rates PF_XBTUSD -o json 2>/dev/null
kraken futures historical-funding-rates PF_ETHUSD -o json 2>/dev/null
Compare rates across contracts to find the highest yield.
When funding is positive (longs pay shorts):
# Hedge: buy spot
kraken order buy BTCUSD 0.01 --type market -o json 2>/dev/null
# Carry: short perpetual (collect funding)
kraken futures order sell PF_XBTUSD 1 -o json 2>/dev/null
When funding is negative (shorts pay longs):
# Carry: long perpetual (collect funding)
kraken futures order buy PF_XBTUSD 1 -o json 2>/dev/null
# Hedge: sell spot
kraken order sell BTCUSD 0.01 --type market -o json 2>/dev/null
Annualized yield = funding_rate * funding_periods_per_year * 100.
Kraken funding periods are typically every 4 or 8 hours (varies by contract). Check contract specs:
kraken futures instruments -o json 2>/dev/null
Track funding accrual:
kraken futures accounts -o json 2>/dev/null
The unrealizedFunding field shows accumulated but unsettled funding.
Watch for funding rate flips:
kraken futures historical-funding-rates PF_XBTUSD -o json 2>/dev/null
If the rate flips direction, the position switches from collecting to paying. Exit or reverse.
Close both legs when carry becomes unprofitable:
kraken futures order buy PF_XBTUSD 1 --reduce-only -o json 2>/dev/null
kraken order sell BTCUSD 0.01 --type market -o json 2>/dev/null