From kraken-cli
Deploys a Kraken grid trading bot via CLI with paper testing, dead man's switch, order validation, and live monitoring for ranging markets.
How this skill is triggered — by the user, by Claude, or both
Slash command
/kraken-cli:recipe-launch-grid-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-grid-trading`, `kraken-paper-to-live`
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.
PRICE=$(kraken ticker BTCUSD -o json 2>/dev/null | jq -r '.[].c[0]')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)kraken paper init --balance 10000 -o json 2>/dev/nullkraken paper buy BTCUSD 0.001 --type limit --price $BUY1 -o json 2>/dev/null (repeat for BUY2, BUY3)kraken paper sell BTCUSD 0.001 --type limit --price $SELL1 -o json 2>/dev/null (repeat for SELL2, SELL3)kraken paper orders -o json 2>/dev/nullkraken paper status -o json 2>/dev/nullkraken auth test -o json 2>/dev/null && kraken balance -o json 2>/dev/nullkraken order cancel-after 3600 -o json 2>/dev/nullkraken order buy BTCUSD 0.001 --type limit --price $BUY1 --validate -o json 2>/dev/nullkraken ws executions -o json 2>/dev/nullnpx claudepluginhub krakenfx/kraken-cliDeploys grid trading on Kraken with layered buy/sell limit orders across a price range for sideways markets. Covers paper testing, live batch placement, and maintenance loop for filled orders.
Backtests, optimizes, and runs automated grid trading strategies on Revolut X. Handles grid bot commands with configurable levels, range, trailing-up, and stop-loss.
Places and manages grid trading strategies on Phoenix DEX perpetuals. Automates limit order grids to profit from ranging markets.