From kraken-cli
Sets up and runs a Kraken DCA bot for fixed-dollar BTC buys, from paper account testing through live market order execution.
npx claudepluginhub krakenfx/kraken-cliThis skill uses the workspace's default tool permissions.
> **PREREQUISITE:** Load the following skills to execute this recipe: `kraken-dca-strategy`, `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-dca-strategy,kraken-paper-to-live
Set up a dollar cost averaging bot that buys a fixed dollar amount of BTC at regular intervals.
CAUTION: Live orders spend real money. Paper-test first, then promote with explicit approval.
kraken paper init --balance 10000 -o json 2>/dev/nullPRICE=$(kraken ticker BTCUSD -o json 2>/dev/null | jq -r '.[].c[0]') && VOLUME=$(echo "scale=8; 100 / $PRICE" | bc)kraken paper buy BTCUSD $VOLUME -o json 2>/dev/nullkraken paper status -o json 2>/dev/nullkraken paper history -o json 2>/dev/nullkraken auth test -o json 2>/dev/nullkraken balance -o json 2>/dev/nullkraken order buy BTCUSD $VOLUME --type market --validate -o json 2>/dev/nullkraken order buy BTCUSD $VOLUME --type market -o json 2>/dev/nullkraken trades-history -o json 2>/dev/null