From kraken-cli
Deploys a Kraken grid trading bot via CLI with paper testing, dead man's switch, order validation, and live monitoring for ranging markets.
npx claudepluginhub krakenfx/kraken-cliThis skill uses the workspace's default tool permissions.
> **PREREQUISITE:** Load the following skills to execute this recipe: `kraken-grid-trading`, `kraken-paper-to-live`
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-grid-trading,kraken-paper-to-live
Deploy a grid of buy and sell orders across a price range.
CAUTION: Grids profit in ranging markets but lose in strong trends. Always paper-test first.
PRICE=$(kraken ticker BTCUSD -o json 2>/dev/null | jq -r '.[].c[0]')BUY1=$(echo "$PRICE - 1000" | bc), BUY2=$(echo "$PRICE - 2000" | bc), BUY3=$(echo "$PRICE - 3000" | bc), SELL1=$(echo "$PRICE + 1000" | bc), SELL2=$(echo "$PRICE + 2000" | bc), SELL3=$(echo "$PRICE + 3000" | bc)kraken paper init --balance 10000 -o json 2>/dev/nullkraken paper buy BTCUSD 0.001 --type limit --price $BUY1 -o json 2>/dev/null (repeat for BUY2, BUY3)kraken paper sell BTCUSD 0.001 --type limit --price $SELL1 -o json 2>/dev/null (repeat for SELL2, SELL3)kraken paper orders -o json 2>/dev/nullkraken paper status -o json 2>/dev/nullkraken auth test -o json 2>/dev/null && kraken balance -o json 2>/dev/nullkraken order cancel-after 3600 -o json 2>/dev/nullkraken order buy BTCUSD 0.001 --type limit --price $BUY1 --validate -o json 2>/dev/nullkraken ws executions -o json 2>/dev/null