From kraken-cli
Automates 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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/kraken-cli:recipe-basis-trade-entryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **PREREQUISITE:** Load the following skills to execute this recipe: `kraken-basis-trading`, `kraken-futures-risk`
PREREQUISITE: Load the following skills to execute this recipe:
kraken-basis-trading,kraken-futures-risk
Enter a delta-neutral basis trade (long spot, short futures) when the basis premium is attractive.
CAUTION: Both legs must fill to be market-neutral. A single-leg fill is a directional bet.
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)kraken balance -o json 2>/dev/nullkraken futures accounts -o json 2>/dev/nullkraken order buy BTCUSD 0.01 --type limit --price $SPOT -o json 2>/dev/nullkraken futures order sell PF_XBTUSD 1 --type limit --price $FUTURES -o json 2>/dev/nullkraken open-orders -o json 2>/dev/null + kraken futures open-orders -o json 2>/dev/nullnpx claudepluginhub krakenfx/kraken-cliExecutes delta-neutral basis trades on Kraken: long spot BTCUSD, short futures PF_XBTUSD to capture positive basis spreads. Monitors convergence and handles exits.
Wires Hyperliquid spot-perp basis as a directional long-perp trigger. Not a hedged arb — Freqtrade single-leg limitation explained.
Places multi-level limit orders near best price using orderbook depth, dynamically adjusting as price moves. Saves taker fees and reduces market impact. Depends on bingx-swap-market, bingx-swap-trade, bingx-swap-account.