Agent Skillskrakenfx/kraken-cli › kraken-paper-to-live

kraken-paper-to-live

GitHub

将经过验证的Kraken纸面交易策略升级为实盘交易,重点评估滑点、手续费等性能差距,执行安全预检,并强制要求基于至少两次通过实验的证据(含一次实盘纸面)方可放行。

skills/kraken-paper-to-live/SKILL.md krakenfx/kraken-cli

Trigger Scenarios

用户希望将纸面交易策略迁移到实盘环境 需要执行实盘交易前的安全检查和证据验证 分析纸面与实盘之间的性能差异

Install

npx skills add krakenfx/kraken-cli --skill kraken-paper-to-live -g -y
More Options

Use without installing

npx skills use krakenfx/kraken-cli@kraken-paper-to-live

指定 Agent (Claude Code)

npx skills add krakenfx/kraken-cli --skill kraken-paper-to-live -a claude-code -g -y

安装 repo 全部 skill

npx skills add krakenfx/kraken-cli --all -g -y

预览 repo 内 skill

npx skills add krakenfx/kraken-cli --list

SKILL.md

Frontmatter
{
    "name": "kraken-paper-to-live",
    "version": "1.1.0",
    "metadata": {
        "openclaw": {
            "category": "finance"
        },
        "requires": {
            "bins": [
                "kraken",
                "jq"
            ],
            "skills": [
                "kraken-paper-strategy",
                "kraken-spot-execution",
                "kraken-risk-operations",
                "kraken-lab-experiment"
            ]
        }
    },
    "description": "Promote a validated paper strategy to live trading, gated on lab experiment evidence plus safety checks."
}

kraken-paper-to-live

Use this skill for:

  • validating a strategy has stable paper results before going live
  • running pre-flight checks before first live trade
  • migrating paper commands to their live equivalents
  • establishing safety controls for the live session

Paper-to-Live Performance Gap

Both spot and futures paper trading simulate taker fees (0.26% spot, configurable for futures). Spot paper supports optional flat-rate slippage simulation via --slippage-rate. Gaps remain between paper and live. Before promoting, factor in:

  • Fees are approximate. Paper uses flat fee rates. Real fees depend on your volume tier and maker/taker status. Each round-trip trade costs 0.32-0.52% at base tier.
  • Slippage is a flat estimate. If --slippage-rate was set (spot), market orders include a fixed slippage factor. Real slippage depends on order book depth, order size, and volatility. Futures paper does not model depth-based slippage.
  • No partial fills or latency. Limit orders fill fully or not at all. Live orders may partially fill, queue, or be rejected. Network and matching-engine latency can cause missed entries or exits.
  • Maker fees: Paper uses taker fee rates for all fills. Live limit orders that provide liquidity pay lower maker fees (0.16% spot).

When presenting promotion analysis to the user, note the remaining gaps (partial fills, depth-dependent slippage, tier-based fees). If slippage was not configured in paper, explicitly state that live market orders will fill at worse prices.

Promotion Gate — evidence, not narrative

Never propose a live order without the evidence block below. The gate rule: at least 2 passing sessions of one frozen experiment, of which a live paper session is mandatory. Replay sessions enter the evidence only with their lookahead caveat attached — replay cannot enforce lookahead (the agent can read the source dataset), so replay screens and live confirms; two replay passes must never promote on their own.

Start with the CLI's own checklistkraken workspace promote grades the whole gate mechanically and returns it in the refusal envelope (exit 1 until scoped credentials land; the evaluation is the point):

kraken workspace promote <workspace> --yes -o json 2>/dev/null | jq '.checklist'
# .criteria[]: one row per gate criterion, satisfied true/false + detail
# .experiments[]: per-experiment passing_sessions / passing_live_sessions
# .manual_trades_in_windows: disclosed manual interference
# .blockers[]: what no evidence can satisfy yet (scoped credentials)

Present that checklist verbatim. Then, for the per-session detail behind it, build the evidence block from kraken lab compare — reproduced cold from disk, seals verified via kraken lab show, no numbers of your own:

kraken lab show <exp> -o json 2>/dev/null      # seal must verify
kraken lab compare <exp> -o json 2>/dev/null | jq '{
  experiment, frozen, pass_count, total,
  sessions: [.sessions[] | {session,
                    verdict: (if .error != null then "error" else .verdict.pass end),
                    source: (.source.kind // "unknown"),
                    caveats}],
  live_run_passed: ([.sessions[] | select((.verdict.pass // false) and .source.kind == "live")] | length > 0)
}'

The evidence block you present for sign-off:

  • experiment + frozen hash (the sealed goalposts),
  • every session: session id, source.kind (live, replay, or unknown for an errored session — errored sessions carry no scorecard), verdict (true, false, or "error" — a mechanical FAIL is not an error), caveats verbatim,
  • pass_count of total, and live_run_passeda passing run whose source.kind is live (first-class, no caveat-string parsing).

Refusals must name what is missing. If pass_count < 2: say which sessions failed or errored. If no live session passed: say "replay evidence only — a passing live session is mandatory; run the plan's live entry" even when pass_count ≥ 2. A tampered or missing experiment file blocks promotion with its own parse/validation envelope — report it, never reconstruct.

Reset rule: a sealed spec cannot change. A new hypothesis, new criteria, or a re-recorded dataset is a new experiment, and its evidence count starts at zero.

A strategy is ready for live promotion when:

  1. The evidence block above passes the gate rule (≥2 passing sessions, live session mandatory, caveats attached).
  2. Error handling works correctly (rate limits, network failures).
  3. The strategy stays within defined risk parameters.
  4. Paper returns remain positive with fees (0.26% spot, 0.05% futures) and slippage enabled (--fee-rate, --slippage-rate).
  5. The user explicitly approves the transition.

Pre-Flight Checklist

Spot

Before the first live spot trade:

  1. Verify credentials:

    kraken auth test -o json 2>/dev/null
    
  2. Check balance:

    kraken balance -o json 2>/dev/null
    
  3. Confirm pair is tradable:

    kraken pairs --pair BTCUSD -o json 2>/dev/null
    
  4. Validate a sample order (does not execute):

    kraken order buy BTCUSD 0.001 --type limit --price 50000 --validate -o json 2>/dev/null
    
  5. Enable dead man's switch:

    kraken order cancel-after 600 -o json 2>/dev/null
    

Futures

Before the first live futures trade:

  1. Verify futures credentials:

    kraken futures accounts -o json 2>/dev/null
    
  2. Check margin availability:

    kraken futures accounts -o json 2>/dev/null
    
  3. Confirm instrument is tradable:

    kraken futures instrument-status --symbol PF_XBTUSD -o json 2>/dev/null
    
  4. Set leverage:

    kraken futures set-leverage PF_XBTUSD 10 -o json 2>/dev/null
    
  5. Enable dead man's switch:

    kraken futures cancel-after 600 -o json 2>/dev/null
    

Command Migration

Paper and live commands differ only in the prefix.

Spot

Paper Live
kraken paper buy BTCUSD 0.01 kraken order buy BTCUSD 0.01
kraken paper sell BTCUSD 0.01 kraken order sell BTCUSD 0.01
kraken paper status kraken balance + kraken open-orders
kraken paper orders kraken open-orders
kraken paper history kraken trades-history
kraken paper cancel <ID> kraken order cancel <TXID>

Futures

Paper Live
kraken futures paper buy PF_XBTUSD 1 --leverage 10 --type market kraken futures order buy PF_XBTUSD 1 --type market
kraken futures paper sell PF_XBTUSD 1 --leverage 10 --type market kraken futures order sell PF_XBTUSD 1 --type market
kraken futures paper positions kraken futures positions
kraken futures paper orders kraken futures open-orders
kraken futures paper fills kraken futures fills
kraken futures paper cancel --order-id <ID> kraken futures cancel --order-id <ID>
kraken futures paper cancel-all kraken futures cancel-all

Leverage note: Paper accepts --leverage inline on buy/sell commands. Live futures configures leverage separately via kraken futures set-leverage <SYMBOL> <LEVERAGE> before placing orders.

Gradual Promotion

Start with smaller size than paper:

  1. Paper size: the volume used during testing.
  2. Initial live size: 10-25% of paper size.
  3. Scale up: increase gradually after confirming live behavior matches paper.

Live Session Safety

After going live, maintain these controls:

  • Dead man's switch refreshed periodically.
  • Balance check after every trade.
  • Open orders verified after every placement.
  • Error handling active for all error categories.
  • Maximum loss threshold that triggers session shutdown.

Rollback

If live behavior diverges from paper:

Spot

  1. Cancel all open spot orders:
    kraken order cancel-all -o json 2>/dev/null
    
  2. Assess balances.
  3. Return to kraken paper to debug.

Futures

  1. Cancel all open futures orders:
    kraken futures cancel-all -o json 2>/dev/null
    
  2. Close open positions with --reduce-only.
  3. Return to kraken futures paper to debug.

Hard Rules

  • Never promote without explicit user sign-off.
  • Never promote without the promotion evidence block: ≥2 passing sessions of a seal-verified experiment, a passing live run among them, caveats attached. Refusals name exactly which sessions or verdicts are missing.
  • Start at reduced size.
  • Always validate live orders before executing.
  • Maintain dead man's switch throughout the live session.
  • First live session should run at autonomy level 3 (supervised) regardless of prior paper autonomy.
  • If you hit a mismatch between what you are trying to do and the CLI's interface or responses — including a mismatch between this skill and the installed CLI version's contract — feel free to submit feedback with kraken feedback.

Version History

  • aa56e59 Current 2026-08-20 04:45

    版本0.4.0:引入工作区、记录会话、市场数据和实验室形成可重复研究循环;替换REST和WebSocket输出的可读响应模式;新增反馈命令;MCP账户设置变更需显式确认;期货WebSocket URL覆盖受信任主机白名单限制;升级工具链和依赖。

  • aa32814 2026-07-25 10:28

Same Skill Collection

skills/kraken-alert-patterns/SKILL.md
skills/kraken-autonomy-levels/SKILL.md
skills/kraken-basis-trading/SKILL.md
skills/kraken-dca-strategy/SKILL.md
skills/kraken-earn-staking/SKILL.md
skills/kraken-error-recovery/SKILL.md
skills/kraken-fee-optimization/SKILL.md
skills/kraken-funding-carry/SKILL.md
skills/kraken-funding-ops/SKILL.md
skills/kraken-futures-risk/SKILL.md
skills/kraken-grid-trading/SKILL.md
skills/kraken-lab-experiment/SKILL.md
skills/kraken-liquidation-guard/SKILL.md
skills/kraken-market-intel/SKILL.md
skills/kraken-mcp-integration/SKILL.md
skills/kraken-multi-pair/SKILL.md
skills/kraken-order-types/SKILL.md
skills/kraken-paper-strategy/SKILL.md
skills/kraken-playground/SKILL.md
skills/kraken-portfolio-intel/SKILL.md
skills/kraken-rate-limits/SKILL.md
skills/kraken-rebalancing/SKILL.md
skills/kraken-risk-operations/SKILL.md
skills/kraken-setup/SKILL.md
skills/kraken-spot-execution/SKILL.md
skills/kraken-stop-take-profit/SKILL.md
skills/kraken-subaccount-ops/SKILL.md
skills/kraken-tax-export/SKILL.md
skills/kraken-twap-execution/SKILL.md
skills/kraken-ws-streaming/SKILL.md
skills/recipe-basis-trade-entry/SKILL.md
skills/recipe-daily-pnl-report/SKILL.md
skills/recipe-drawdown-circuit-breaker/SKILL.md
skills/recipe-earn-yield-compare/SKILL.md
skills/recipe-emergency-flatten/SKILL.md
skills/recipe-fee-tier-progress/SKILL.md
skills/recipe-funding-rate-scan/SKILL.md
skills/recipe-futures-hedge-spot/SKILL.md
skills/recipe-launch-grid-bot/SKILL.md
skills/recipe-morning-market-brief/SKILL.md
skills/recipe-multi-pair-breakout-watch/SKILL.md
skills/recipe-paper-strategy-backtest/SKILL.md
skills/recipe-playground-dca-triggered/SKILL.md
skills/recipe-playground-dca/SKILL.md
skills/recipe-playground-price-alert/SKILL.md
skills/recipe-playground-rebalance/SKILL.md
skills/recipe-playground-webhook/SKILL.md
skills/recipe-portfolio-snapshot-csv/SKILL.md
skills/recipe-price-level-alerts/SKILL.md

Metadata

Files
0
Version
aa56e59
Hash
4cf9d023
Indexed
2026-07-25 10:28

Главная - Вики-сайт
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-20 08:59
浙ICP备14020137号-1 $Гость$