recipe-launch-grid-bot
Deploy a grid trading bot with paper validation and live safety controls.
Best use case
recipe-launch-grid-bot is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Deploy a grid trading bot with paper validation and live safety controls.
Teams using recipe-launch-grid-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
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/kraken-official-recipe-launch-grid-bot/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How recipe-launch-grid-bot Compares
| Feature / Agent | recipe-launch-grid-bot | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Deploy a grid trading bot with paper validation and live safety controls.
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
# Launch a Grid Bot > **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. ## Steps 1. Get current price: `PRICE=$(kraken ticker BTCUSD -o json 2>/dev/null | jq -r '.[].c[0]')` 2. Compute grid levels (e.g., 3 levels at $1000 spacing): `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)` 3. Paper-test the grid: `kraken paper init --balance 10000 -o json 2>/dev/null` 4. Place paper buy levels: `kraken paper buy BTCUSD 0.001 --type limit --price $BUY1 -o json 2>/dev/null` (repeat for BUY2, BUY3) 5. Place paper sell levels: `kraken paper sell BTCUSD 0.001 --type limit --price $SELL1 -o json 2>/dev/null` (repeat for SELL2, SELL3) 5. Monitor paper fills: `kraken paper orders -o json 2>/dev/null` 6. Review paper results: `kraken paper status -o json 2>/dev/null` 7. Pre-flight live: `kraken auth test -o json 2>/dev/null && kraken balance -o json 2>/dev/null` 8. Enable dead man's switch: `kraken order cancel-after 3600 -o json 2>/dev/null` 10. Validate live grid orders: `kraken order buy BTCUSD 0.001 --type limit --price $BUY1 --validate -o json 2>/dev/null` 11. Place live grid (requires human approval): place buy and sell levels sequentially using $BUY1-3 and $SELL1-3 11. Monitor fills: `kraken ws executions -o json 2>/dev/null` 12. Replace filled levels: when a buy fills, place a sell one level up, and vice versa
Related Skills
recipe-withdrawal-to-cold-storage
Safely withdraw funds to a pre-approved cold storage address.
recipe-weekly-rebalance
Run a weekly portfolio rebalance to maintain target asset allocations.
recipe-trailing-stop-runner
Ride a trend with a trailing stop that locks in profits on reversal.
recipe-track-orderbook-depth
Monitor order book depth and bid-ask imbalance for liquidity signals.
recipe-subaccount-capital-rotation
Rotate capital between subaccounts based on strategy performance.
recipe-start-dca-bot
Set up and run a dollar cost averaging bot from paper test to live.
recipe-price-level-alerts
Set up price level alerts that notify when key levels are crossed.
recipe-portfolio-snapshot-csv
Export a portfolio snapshot with balances and valuations to CSV.
recipe-paper-strategy-backtest
Backtest a trading strategy using paper trading against live prices.
recipe-multi-pair-breakout-watch
Monitor multiple pairs for price breakouts from defined ranges.
recipe-morning-market-brief
Generate a morning market summary with prices, volume, and portfolio state.
recipe-futures-hedge-spot
Hedge a spot holding with a short futures position to lock in value.