用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/jiayaoqijia/cryptoskill --skill kraken-futures-trading命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
"Peer-driven onchain reputation layer for AI agents enabling kudos across reliability, speed, accuracy, creativity, and security categories."
"Interaction layer where humans, AI agents, and blockchain converge, powering a trustless reputation economy for ERC-8004 ecosystem."
"Interaction layer powering trustless reputation economy for ERC-8004 ecosystem with rewards for honest contributions."
基于 SOC 职业分类
正在显示 SKILL.md
| name | kraken-futures-trading |
| version | 1.0.0 |
| description | Place, manage, and monitor futures orders across the full lifecycle. |
| metadata | {"openclaw":{"category":"finance"},"requires":{"bins":["kraken"]}} |
Use this skill for:
Futures use separate credentials from spot:
export KRAKEN_FUTURES_API_KEY="your-futures-key"
export KRAKEN_FUTURES_API_SECRET="your-futures-secret"
kraken futures instruments -o json 2>/dev/null
kraken futures ticker PF_XBTUSD -o json 2>/dev/null
kraken futures accounts -o json 2>/dev/null
kraken futures order buy PF_XBTUSD 1 --type limit --price 50000 -o json 2>/dev/null
kraken futures open-orders -o json 2>/dev/null
Market order:
kraken futures order buy PF_XBTUSD 1 -o json 2>/dev/null
Limit order:
kraken futures order sell PF_XBTUSD 1 --type limit --price 70000 -o json 2>/dev/null
Stop order:
kraken futures order buy PF_XBTUSD 1 --type stop --stop-price 55000 --trigger-signal mark -o json 2>/dev/null
Trailing stop:
kraken futures order sell PF_XBTUSD 1 --type stop --stop-price 68000 --trailing-stop-max-deviation 500 --trailing-stop-deviation-unit quote_currency -o json 2>/dev/null
Reduce-only (close position without opening new exposure):
kraken futures order sell PF_XBTUSD 1 --reduce-only -o json 2>/dev/null
Place multiple orders atomically (useful for bracket entries):
kraken futures batch-order '[
{"order":"sendorder","orderTag":"entry","symbol":"PF_XBTUSD","side":"buy","size":1,"orderType":"lmt","limitPrice":50000},
{"order":"sendorder","orderTag":"tp","symbol":"PF_XBTUSD","side":"sell","size":1,"orderType":"lmt","limitPrice":55000,"reduceOnly":true}
]' -o json 2>/dev/null
Edit in place:
kraken futures edit-order --order-id <ID> --price 51000 -o json 2>/dev/null
Cancel one:
kraken futures cancel --order-id <ID> -o json 2>/dev/null
Cancel all:
kraken futures cancel-all -o json 2>/dev/null
Cancel by symbol:
kraken futures cancel-all --symbol PF_XBTUSD -o json 2>/dev/null
Open positions:
kraken futures positions -o json 2>/dev/null
Recent fills:
kraken futures fills --since 2024-01-01T00:00:00Z -o json 2>/dev/null
Execution history:
kraken futures history-executions --since 2024-01-01T00:00:00Z --sort desc -o json 2>/dev/null
Order history:
kraken futures history-orders --sort desc -o json 2>/dev/null
Enable for unattended sessions. All orders cancel if the timer expires:
kraken futures cancel-after 600 -o json 2>/dev/null
Refresh periodically. If the agent crashes, orders auto-cancel.
futures accounts before trading to confirm margin availability.--reduce-only when closing positions to prevent accidental flips.cancel-after for any automated session.