Run Git operations — commits, branches, merges, rebases, conflict resolution, and recovery — with safety rules enforced.
Documents
Financial Report Automator
Try itAutomated quarterly financial report generation with dividend-adjusted total return calculations. Use when generating stock performance reports, quarterly ea...
What it does
Generates quarterly stock performance reports with **dividend-adjusted total return**.
The skill document
Financial Report Automator
Generates quarterly stock performance reports with dividend-adjusted total return.
What It Does
- Parses CSV price data (Yahoo Finance export format)
- Computes price return (raw close) and total return (adjusted close with dividends)
- Produces structured quarterly reports: start/end price, returns, high/low, avg volume, dividends paid
Key Fix (v1.0.1)
Previous versions used raw close for return calculations, which understated returns for dividend-paying stocks like AAPL. v1.0.1 introduces:
- Column name normalization — handles mixed-case CSV headers (
Date→date) - Adjusted close computation — backward-adjusts prices for dividends so total return reflects reinvested dividends
- Separate price_return vs total_return — both are reported for transparency
- Dividend tracking —
dividendcolumn is optional; defaults to 0 if absent
Usage
As a Python module
from scripts.stock_analyzer import StockAnalyzer
analyzer = StockAnalyzer(data_path="finance/AAPL.csv")
# 30-day total return (dividend-adjusted)
print(analyzer.calculate_returns(30))
# 30-day price return only (no dividends)
print(analyzer.calculate_returns(30, use_adj=False))
# Full quarterly report
report = analyzer.generate_quarterly_report(quarter=2, year=2026)
print(report)
CLI
python3 scripts/stock_analyzer.py
CSV Format Expected
Date,Close,Volume,Open,High,Low
01/02/2026,$269.77,21755774,$272.05,$277.82,$269.11
Optional columns:
dividend— per-share dividend on ex-div dateadj_close— pre-computed adjusted close (overrides internal calculation)
Report Output
{
"quarter": "Q2 2026",
"start_date": "2026-04-01",
"end_date": "2026-06-30",
"start_price": 223.0,
"end_price": 235.5,
"price_return_pct": 5.61,
"total_return_pct": 6.12,
"dividends_per_share": 0.25,
"highest_price": 240.0,
"lowest_price": 218.5,
"average_volume": 35000000
}
Requirements
- Python 3.10+
- pandas
Related skills
Read and write Excel workbooks, worksheets, ranges, tables, and charts in OneDrive through Microsoft Graph with managed OAuth.
Query and manage Linear issues, projects, teams, cycles, labels, and comments through a managed OAuth GraphQL endpoint.
pptx
OfficialBuild new decks, edit existing slides, or extract text from .pptx and .potx files.
openai-docs
OfficialGet authoritative, current OpenAI developer docs with citations for building, model selection, and migration guidance.
doc-coauthoring
OfficialThree-stage co-authoring workflow that guides you from context gathering to reader-tested documentation.
More from terrycarter1985
Browse all skillsGrade English homework for Chinese primary students in grades 3–6 with consistent, age-appropriate feedback.
Analyze stocks and cryptocurrencies using Yahoo Finance data. Supports portfolio management (create, add, remove assets), crypto analysis (Top 20 by market c...
Control whole-house music scenes combining Spotify playback with Airfoil speaker routing. Quick presets for morning, party, chill modes.
Generate reusable, policy-aligned customer service replies for e-commerce aftersales scenarios. Use when support staff need fast, compliant Chinese responses...
Control whole-house music scenes combining Spotify playback with Airfoil speaker routing. Quick presets for morning, party, chill modes.
Comprehensive developer cheatsheets and quick references for Git, Docker, Kubernetes, jq, curl, and common Linux commands. Use when needing quick lookups for...