skills/recipe-start-dca-bot/SKILL.md
Set up and run a dollar cost averaging bot from paper test to live.
npx skillsauth add krakenfx/kraken-cli recipe-start-dca-botInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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/nulltools
Connect MCP clients to kraken-cli for native tool calling without subprocess wrappers.
testing
Safely withdraw funds to a pre-approved cold storage address.
testing
Run a weekly portfolio rebalance to maintain target asset allocations.
testing
Ride a trend with a trailing stop that locks in profits on reversal.