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.
npx claudepluginhub krakenfx/kraken-cliThis skill uses the workspace's default tool permissions.
> **PREREQUISITE:** Load the following skills to execute this recipe: `kraken-basis-trading`, `kraken-futures-risk`
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
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/null