recipe-start-dca-bot

Set up and run a dollar cost averaging bot from paper test to live.

23 stars

Best use case

recipe-start-dca-bot is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Set up and run a dollar cost averaging bot from paper test to live.

Teams using recipe-start-dca-bot should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/kraken-official-recipe-start-dca-bot/SKILL.md --create-dirs "https://raw.githubusercontent.com/jiayaoqijia/cryptoskill/main/skills/exchanges/kraken-official-recipe-start-dca-bot/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/kraken-official-recipe-start-dca-bot/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How recipe-start-dca-bot Compares

Feature / Agentrecipe-start-dca-botStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Set up and run a dollar cost averaging bot from paper test to live.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Start a DCA Bot

> **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.

## Steps

1. Initialize paper account: `kraken paper init --balance 10000 -o json 2>/dev/null`
2. Calculate volume from dollar amount: `PRICE=$(kraken ticker BTCUSD -o json 2>/dev/null | jq -r '.[].c[0]') && VOLUME=$(echo "scale=8; 100 / $PRICE" | bc)`
3. Run 5 paper DCA buys to validate the loop: `kraken paper buy BTCUSD $VOLUME -o json 2>/dev/null`
4. Check paper results: `kraken paper status -o json 2>/dev/null`
5. Review paper trade history: `kraken paper history -o json 2>/dev/null`
6. Verify live credentials: `kraken auth test -o json 2>/dev/null`
7. Check live balance: `kraken balance -o json 2>/dev/null`
8. Validate the live order: `kraken order buy BTCUSD $VOLUME --type market --validate -o json 2>/dev/null`
9. Execute first live buy (requires human approval): `kraken order buy BTCUSD $VOLUME --type market -o json 2>/dev/null`
10. Verify fill: `kraken trades-history -o json 2>/dev/null`

Related Skills

recipe-withdrawal-to-cold-storage

23
from jiayaoqijia/cryptoskill

Safely withdraw funds to a pre-approved cold storage address.

recipe-weekly-rebalance

23
from jiayaoqijia/cryptoskill

Run a weekly portfolio rebalance to maintain target asset allocations.

recipe-trailing-stop-runner

23
from jiayaoqijia/cryptoskill

Ride a trend with a trailing stop that locks in profits on reversal.

recipe-track-orderbook-depth

23
from jiayaoqijia/cryptoskill

Monitor order book depth and bid-ask imbalance for liquidity signals.

recipe-subaccount-capital-rotation

23
from jiayaoqijia/cryptoskill

Rotate capital between subaccounts based on strategy performance.

recipe-price-level-alerts

23
from jiayaoqijia/cryptoskill

Set up price level alerts that notify when key levels are crossed.

recipe-portfolio-snapshot-csv

23
from jiayaoqijia/cryptoskill

Export a portfolio snapshot with balances and valuations to CSV.

recipe-paper-strategy-backtest

23
from jiayaoqijia/cryptoskill

Backtest a trading strategy using paper trading against live prices.

recipe-multi-pair-breakout-watch

23
from jiayaoqijia/cryptoskill

Monitor multiple pairs for price breakouts from defined ranges.

recipe-morning-market-brief

23
from jiayaoqijia/cryptoskill

Generate a morning market summary with prices, volume, and portfolio state.

recipe-launch-grid-bot

23
from jiayaoqijia/cryptoskill

Deploy a grid trading bot with paper validation and live safety controls.

recipe-futures-hedge-spot

23
from jiayaoqijia/cryptoskill

Hedge a spot holding with a short futures position to lock in value.