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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/kraken-cli:recipe-start-dca-botThe 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-dca-strategy`, `kraken-paper-to-live`
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/nullnpx claudepluginhub krakenfx/kraken-cliImplements dollar cost averaging on Kraken: scheduled market/limit buys, paper trading simulations, cost basis tracking, and DCA vs lump-sum performance analysis.
Writes, validates, and troubleshoots DCA strategies (weekly/daily/monthly scheduled buys) on Superior Trade using Freqtrade's position adjustment primitives.
Guides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.