From kraken-cli
Executes delta-neutral basis trades on Kraken: long spot BTCUSD, short futures PF_XBTUSD to capture positive basis spreads. Monitors convergence and handles exits.
How this skill is triggered — by the user, by Claude, or both
Slash command
/kraken-cli:kraken-basis-tradingThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill for:
Use this skill for:
When futures trade at a premium to spot (positive basis), you can buy spot and sell futures for the same notional amount. The profit comes from basis convergence as the contract approaches expiry, or from collecting funding on perpetuals. The position is market-neutral: price movement does not affect P&L, only the spread does.
SPOT=$(kraken ticker BTCUSD -o json 2>/dev/null | jq -r '.[].c[0]')
FUTURES=$(kraken futures ticker PF_XBTUSD -o json 2>/dev/null | jq -r '.ticker.last')
BASIS=$(echo "scale=4; ($FUTURES - $SPOT) / $SPOT * 100" | bc)
echo "Basis: ${BASIS}%"
A positive basis means futures are more expensive than spot (contango). A negative basis means futures are cheaper (backwardation).
# Long spot
kraken order buy BTCUSD 0.01 --type limit --price $SPOT -o json 2>/dev/null
# Short futures (matched notional)
kraken futures order sell PF_XBTUSD 1 --type limit --price $FUTURES -o json 2>/dev/null
Watch basis convergence:
# Periodic check
kraken ticker BTCUSD -o json 2>/dev/null
kraken futures ticker PF_XBTUSD -o json 2>/dev/null
Check positions:
kraken balance -o json 2>/dev/null
kraken futures positions -o json 2>/dev/null
Close both legs when basis narrows to target:
# Sell spot
kraken order sell BTCUSD 0.01 --type market -o json 2>/dev/null
# Close futures short
kraken futures order buy PF_XBTUSD 1 --reduce-only -o json 2>/dev/null
npx claudepluginhub krakenfx/kraken-cliAutomates delta-neutral BTC spot-futures basis trade entry on Kraken when premium exceeds threshold. Performs price checks, basis calc, balance verification, matched sizing, orders, and fill checks.
Wires Hyperliquid spot-perp basis as a directional long-perp trigger. Not a hedged arb — Freqtrade single-leg limitation explained.
Trades on Bybit using natural language. Supports spot, linear perpetuals, inverse contracts, options, and earn products. Includes auto-update with integrity verification.