From kraken-cli
Rebalances crypto portfolios weekly on Kraken to target allocations (e.g., 50% BTC, 30% ETH, 20% SOL). Fetches balances/prices, checks 5% drift, computes/executes trades after approval.
How this skill is triggered — by the user, by Claude, or both
Slash command
/kraken-cli:recipe-weekly-rebalanceThe 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-rebalancing`
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/nullnpx claudepluginhub krakenfx/kraken-cliCalculates and executes Kraken crypto portfolio rebalancing to maintain target USD allocations (e.g., BTC/ETH/SOL), with drift detection, thresholds, paper trading, and live orders.
Designs rebalancing strategies for investment portfolios, covering trigger types (calendar, threshold, hybrid), cash-flow rebalancing, and tax-aware execution.
Tracks crypto portfolios with CoinGecko real-time prices, P&L calculations, allocation breakdowns, risk alerts, and JSON/CSV exports via Python scripts.