From kraken-cli
Generates daily P&L reports for Kraken portfolios from trades, balances, ledger entries, prices, and futures data to track realized gains, fees, and value changes.
How this skill is triggered — by the user, by Claude, or both
Slash command
/kraken-cli:recipe-daily-pnl-reportThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **PREREQUISITE:** Load the following skill to execute this recipe: `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/nullnpx claudepluginhub krakenfx/kraken-cliAnalyzes Kraken crypto portfolios using kraken CLI: fetches balances/prices for valuation/P&L, trade history/ledgers, fees/volume tiers, exports reports.
Generates morning market and portfolio briefing report with top movers, prices, positions, P&L, overnight orders using CDCX CLI and jq. For daily trading status checks.
Summarizes daily risk — open positions, total exposure, realized/unrealized P&L, and panic-cooldown status. Flags daily loss limit warnings.