بنقرة واحدة
recipe-launch-grid-bot
Deploy a grid trading bot with paper validation and live safety controls.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Deploy a grid trading bot with paper validation and live safety controls.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Connect MCP clients to kraken-cli for native tool calling without subprocess wrappers.
Install kraken-cli, create API credentials, and go from paper trading to live in under five minutes.
Discover staking strategies, allocate funds, and track earn positions.
Place, manage, and monitor futures orders across the full lifecycle.
Test strategy logic on paper trading before touching live funds.
Promote a validated paper strategy to live trading with safety checks.
| name | recipe-launch-grid-bot |
| version | 1.0.0 |
| description | Deploy a grid trading bot with paper validation and live safety controls. |
| metadata | {"openclaw":{"category":"recipe","domain":"strategy"},"requires":{"bins":["kraken"],"skills":["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/null