一键导入
recipe-daily-pnl-report
Generate a daily profit and loss summary from trades and balances.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generate a daily profit and loss summary from trades and balances.
用 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-daily-pnl-report |
| version | 1.0.0 |
| description | Generate a daily profit and loss summary from trades and balances. |
| metadata | {"openclaw":{"category":"recipe","domain":"portfolio"},"requires":{"bins":["kraken"],"skills":["kraken-portfolio-intel"]}} |
PREREQUISITE: Load the following skill to execute this recipe:
kraken-portfolio-intel
Generate a daily summary of trading activity, fees, and portfolio change.
TS=$(date -j -f '%Y-%m-%d' "$(date +%Y-%m-%d)" +%s 2>/dev/null || date -d 'today 00:00' +%s)kraken balance -o json 2>/dev/nullkraken ticker BTCUSD ETHUSD SOLUSD -o json 2>/dev/nullkraken trades-history --consolidate-taker -o json 2>/dev/nullkraken ledgers --start $TS -o json 2>/dev/nullkraken futures positions -o json 2>/dev/nullkraken futures accounts -o json 2>/dev/null