ワンクリックで
kraken-tax-export
Export trade history, ledgers, and cost basis data for tax reporting.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Export trade history, ledgers, and cost basis data for tax reporting.
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 | kraken-tax-export |
| version | 1.0.0 |
| description | Export trade history, ledgers, and cost basis data for tax reporting. |
| metadata | {"openclaw":{"category":"finance"},"requires":{"bins":["kraken"],"skills":["kraken-portfolio-intel"]}} |
Use this skill for:
Request a full trade export for a tax year:
kraken export-report --report trades --description "2024 tax year" --format CSV --starttm 1704067200 --endtm 1735689600 -o json 2>/dev/null
Check status:
kraken export-status --report trades -o json 2>/dev/null
Download when ready:
kraken export-retrieve <REPORT_ID> -o json 2>/dev/null
Clean up after download:
kraken export-delete <REPORT_ID> -o json 2>/dev/null
Ledgers capture all account activity (trades, deposits, withdrawals, staking rewards, fees):
kraken export-report --report ledgers --description "2024 full ledger" --format CSV --starttm 1704067200 --endtm 1735689600 -o json 2>/dev/null
For smaller date ranges, query directly:
kraken trades-history --ledgers --consolidate-taker -o json 2>/dev/null
Filter by time:
kraken closed-orders --start 1704067200 --end 1735689600 -o json 2>/dev/null
Futures trades are exported separately:
kraken futures history-executions --since 2024-01-01T00:00:00Z --before 2025-01-01T00:00:00Z --sort asc -o json 2>/dev/null
Futures account log (CSV):
kraken futures history-account-log-csv --since 2024-01-01T00:00:00Z --before 2025-01-01T00:00:00Z -o json 2>/dev/null
Complete picture for tax reconciliation:
kraken deposit status --start 1704067200 --end 1735689600 -o json 2>/dev/null
kraken withdrawal status --start 1704067200 --end 1735689600 -o json 2>/dev/null
Staking rewards appear as ledger entries of type staking:
kraken ledgers --type staking --start 1704067200 --end 1735689600 -o json 2>/dev/null
trades-history totals.