Install
openclaw skills install investingPersonal investing assistant for Lithuanian investors. Monitors markets, ETFs, crypto, pension funds (III pakopa), and provides monthly investment suggestions based on research and market conditions.
openclaw skills install investingA comprehensive investing assistant tailored for Lithuanian investors, inspired by šešiNuliai.lt philosophy.
Based on evidence-based, passive investing:
📊 Sample Allocation:
├── 70% Stocks (ETFs)
│ ├── 50% VWCE (All-World)
│ ├── 15% IXUS (Ex-US) or EIMI (Emerging)
│ └── 5% Small Cap Value
├── 10% Bonds
│ └── AGGH or Government Bonds
├── 10% Crypto
│ ├── 8% Bitcoin
│ └── 2% Ethereum
└── 10% Cash / Short-term
└── Savings accounts, MMF
Adjust based on:
#!/bin/bash
# Check key ETF prices
echo "📈 ETF Prices - $(date '+%Y-%m-%d')"
echo "================================"
# VWCE - Vanguard FTSE All-World
curl -s "https://query1.finance.yahoo.com/v8/finance/chart/VWCE.DE" | \
jq -r '"VWCE: €" + (.chart.result[0].meta.regularMarketPrice | tostring)'
# EIMI - iShares Emerging Markets
curl -s "https://query1.finance.yahoo.com/v8/finance/chart/EIMI.L" | \
jq -r '"EIMI: £" + (.chart.result[0].meta.regularMarketPrice | tostring)'
# Bitcoin
curl -s "https://api.coingecko.com/api/v3/simple/price?ids=bitcoin&vs_currencies=eur" | \
jq -r '"BTC: €" + (.bitcoin.eur | tostring)'
#!/bin/bash
# Calculate monthly DCA amounts
BUDGET=${1:-500} # Monthly investment budget
echo "💰 Monthly DCA Plan - €$BUDGET"
echo "================================"
echo "VWCE (70%): €$((BUDGET * 70 / 100))"
echo "EIMI (10%): €$((BUDGET * 10 / 100))"
echo "BTC (10%): €$((BUDGET * 10 / 100))"
echo "Cash (10%): €$((BUDGET * 10 / 100))"
Run: check-etf-prices.sh
Check: Any significant drops (>10%) = buying opportunity
Scan:
- šešiNuliai.lt - new posts?
- r/eupersonalfinance - hot topics?
- ECB announcements - rate changes?
Run: monthly-dca.sh [budget]
Execute trades via:
- Interactive Brokers (ETFs)
- Bitstamp/Kraken (Crypto)
Update:
- Portfolio tracker spreadsheet
- Note any deviations from plan
- Review annual progress
| Fund | TER | Notes |
|---|---|---|
| Goindex III pakopa | 0.40% | Index-tracking, low cost |
| Swedbank Index | 0.45% | Also index-based |
| Luminor Index | 0.50% | Decent alternative |
Avoid: High-fee active funds (1%+ TER)
Before investing, ensure:
Emergency Fund = 3-6 months expenses
Location: High-yield savings account
Current best rates (LT):
- Swedbank Taupomasis: ~3%
- SEB Taupomoji: ~2.5%
- Revolut Savings: ~3.5%
{
"name": "Daily Market Check",
"schedule": { "kind": "cron", "expr": "0 9 * * 1-5" },
"payload": {
"kind": "agentTurn",
"message": "Check VWCE, BTC prices. Alert if >5% change from yesterday."
}
}
{
"name": "Monthly DCA Reminder",
"schedule": { "kind": "cron", "expr": "0 10 1 * *" },
"payload": {
"kind": "agentTurn",
"message": "Monthly DCA time! Check budget, run monthly-dca.sh, execute trades."
}
}
{
"name": "Quarterly Portfolio Review",
"schedule": { "kind": "cron", "expr": "0 10 1 1,4,7,10 *" },
"payload": {
"kind": "agentTurn",
"message": "Quarterly review: Check allocation drift, rebalance if >5% off target, update spreadsheet."
}
}
This is not financial advice. Do your own research. Past performance does not guarantee future results. Investing involves risk of loss.
Skill created based on research from šešiNuliai.lt, Bogleheads, and EU personal finance communities.