skills/recipe-weekly-rebalance/SKILL.md
Run a weekly portfolio rebalance to maintain target asset allocations.
npx skillsauth add krakenfx/kraken-cli recipe-weekly-rebalanceInstall 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-rebalancing
Check portfolio drift and rebalance to target weights once per week.
kraken balance -o json 2>/dev/nullkraken ticker BTCUSD ETHUSD SOLUSD -o json 2>/dev/nullSELL_VOL=$(echo "scale=8; ($CURRENT_BTC_VALUE - $TARGET_BTC_VALUE) / $BTC_PRICE" | bc) and BUY_VOL=$(echo "scale=8; ($TARGET_SOL_VALUE - $CURRENT_SOL_VALUE) / $SOL_PRICE" | bc)kraken order sell BTCUSD $SELL_VOL --type market --validate -o json 2>/dev/nullkraken order sell BTCUSD $SELL_VOL --type market -o json 2>/dev/nullkraken order buy SOLUSD $BUY_VOL --type market -o json 2>/dev/nullkraken balance -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
Ride a trend with a trailing stop that locks in profits on reversal.
testing
Monitor order book depth and bid-ask imbalance for liquidity signals.