بنقرة واحدة
recipe-basis-trade-entry
Enter a spot-futures basis trade when the premium exceeds a target threshold.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Enter a spot-futures basis trade when the premium exceeds a target threshold.
التثبيت باستخدام 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-basis-trade-entry |
| version | 1.0.0 |
| description | Enter a spot-futures basis trade when the premium exceeds a target threshold. |
| metadata | {"openclaw":{"category":"recipe","domain":"strategy"},"requires":{"bins":["kraken"],"skills":["kraken-basis-trading","kraken-futures-risk"]}} |
PREREQUISITE: Load the following skills to execute this recipe:
kraken-basis-trading,kraken-futures-risk
Enter a delta-neutral basis trade (long spot, short futures) when the basis premium is attractive.
CAUTION: Both legs must fill to be market-neutral. A single-leg fill is a directional bet.
SPOT=$(kraken ticker BTCUSD -o json 2>/dev/null | jq -r '.[].c[0]')FUTURES=$(kraken futures ticker PF_XBTUSD -o json 2>/dev/null | jq -r '.ticker.last')BASIS=$(echo "scale=4; ($FUTURES - $SPOT) / $SPOT * 100" | bc)kraken balance -o json 2>/dev/nullkraken futures accounts -o json 2>/dev/nullkraken order buy BTCUSD 0.01 --type limit --price $SPOT -o json 2>/dev/nullkraken futures order sell PF_XBTUSD 1 --type limit --price $FUTURES -o json 2>/dev/nullkraken open-orders -o json 2>/dev/null + kraken futures open-orders -o json 2>/dev/null