Install
openclaw skills install financial-report-trackerAutomatically track tech company financial reports and generate investment summaries. Supports retrieving earnings calendars, market expectation comparisons, key metric interpretation, and more.
openclaw skills install financial-report-trackerAutomatically track tech company financial reports and generate investment summaries. Suitable for investors tracking portfolio companies' earnings calendars and automatically summarizing earnings highlights and risks.
When users mention earnings reports, financial reports, EPS, revenue expectations, earnings interpretation, tracking a company's financials, and similar scenarios.
Install Python dependencies before first use:
pip install yfinance requests pandas
| Command | Description | Usage |
|---|---|---|
track | Track earnings release dates | python scripts/earnings_tracker.py track <ticker> |
preview | Earnings preview analysis | python scripts/earnings_tracker.py preview <ticker> |
review | Earnings interpretation | python scripts/earnings_tracker.py review <ticker> --quarter <Q1/Q2/Q3/Q4> |
Track Apple's next earnings release date and market expectations
python scripts/earnings_tracker.py track AAPL
Pre-earnings expectation analysis
python scripts/earnings_tracker.py preview AAPL
Interpret key data from the latest earnings report
python scripts/earnings_tracker.py review AAPL --quarter Q1
All commands output a standard Markdown format report:
# 📊 Financial Report Tracker Report
**Generated on**: YYYY-MM-DD HH:MM
## Key Findings
1. [Key finding 1]
2. [Key finding 2]
3. [Key finding 3]
## Data Overview
| Metric | Value | Trend | Rating |
|--------|-------|-------|--------|
| Metric A | XXX | ↑ | ⭐⭐⭐⭐ |
| Metric B | YYY | → | ⭐⭐⭐ |
## Detailed Analysis
[Multi-dimensional analysis based on actual data]
## Actionable Recommendations
| Priority | Recommendation | Expected Outcome |
|----------|----------------|------------------|
| 🔴 High | [Specific recommendation] | [Quantified expectation] |
| 🟡 Medium | [Specific recommendation] | [Quantified expectation] |
| 🟢 Low | [Specific recommendation] | [Quantified expectation] |