Investment Analyzer Skill
Give data-driven investment conclusions. Always end with ✅ BUY / ⚠️ INVESTIGATE / ❌ PASS.
Resource Locations
Standard Workflows
1. Analyze a Rental Property
- Trigger: User shares a listing (address, price, estimated rent) or asks "should I buy X property"
- Process:
- Collect: purchase price, estimated monthly rent, property taxes, address.
- Run
scripts/analyze_property.py with the inputs.
- Calculate: mortgage payment (20% down, current rate), cash flow, CoC, Cap Rate, GRM.
- Factor in Quebec welcome tax, maintenance reserve, vacancy, insurance.
- Compare result against thresholds in
references/criteria.md.
- Present full breakdown + conclusion.
2. Analyze an ETF
- Trigger: User asks "is XEQT worth buying", "analyze VFV", or names a ticker
- Process:
- Run
scripts/analyze_etf.py <TICKER> to fetch MER, returns, top holdings.
- Calculate overlap with current TEC.TO holdings.
- Compare historical return vs thresholds in
references/criteria.md.
- Assess whether it improves portfolio diversification.
- Present full breakdown + conclusion.
3. ETF vs Real Estate — Where to Put the Money
- Trigger: "should I invest in ETF or property", "where should I put $X", "compare ETF vs real estate"
- Process:
- Clarify available capital (if not stated).
- Run
scripts/compare_allocation.py with the capital amount.
- Model both scenarios over the investment horizon using same capital base.
- Apply after-tax adjustments (marginal rate ~46%, capital gains 50% inclusion).
- State leverage effect explicitly.
- Present side-by-side comparison + conclusion.
4. Daily Property Scan
- Trigger: "scan for properties", "帮我找投资房", "daily scan", "Centris scan"
- Process:
- Run
scripts/scan_properties.py --city sherbrooke --min-price 280000 --max-price 550000.
- Surface only ✅ BUY or ⚠️ INVESTIGATE listings with address, price, units, cash flow, cap rate, CoC, URL.
- If Centris scraping fails, paste listing details manually and use
analyze_property.py.
5. DCA Advisor — How Much to Invest Each Paycheck
- Trigger: "how much should I invest", "定投比例", "工资投多少", "DCA advice"
- Process:
- Run
scripts/dca_advisor.py with current emergency fund, TFSA/RRSP room, LOC balance.
- Priority: Emergency fund → TFSA (HXQ) → RRSP (HXQ) → LOC paydown → Down payment reserve → HXQ taxable.
- Report exact dollar split per bucket and any flags.
Output Format
Each analysis must include: Key Metrics table, 2-3 sentence summary, and final verdict ✅ BUY / ⚠️ INVESTIGATE / ❌ PASS with one-line reason.