skills/recipe-daily-pnl-report/SKILL.md
Generate a daily profit and loss summary from trades and balances.
npx skillsauth add krakenfx/kraken-cli recipe-daily-pnl-reportInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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/nulltools
Connect MCP clients to kraken-cli for native tool calling without subprocess wrappers.
testing
Safely withdraw funds to a pre-approved cold storage address.
testing
Run a weekly portfolio rebalance to maintain target asset allocations.
testing
Ride a trend with a trailing stop that locks in profits on reversal.