mirror of
https://github.com/shawnkim1997/All-in-one-Financial-Analysis.git
synced 2026-08-16 11:58:07 +00:00
Report page now auto-detects valuation tier based on company financials: - Tier 1 (FCF > 0): Traditional DCF analysis - Tier 2 (EBITDA > 0): EV/EBITDA relative valuation with Bear/Base/Bull scenarios - Tier 3 (Rev Growth > 10%): P/S revenue-based valuation - Tier 4 (all weak): P/B / NAV approach Includes RelativeValuationSection, PathToProfitability components, margin trajectory chart, and cash runway analysis. Also includes fixes across earnings, macro, screener, technical, filings pages and backend routers. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
ATLAS Terminal — Web Application
Next.js 14 + FastAPI full-stack financial analysis terminal.
See the main README for full documentation.
Quick Start
# Backend (from atlas-terminal/)
pip install -r requirements.txt
PYTHONPATH="." uvicorn server.main:app --port 8000
# Frontend (from atlas-terminal/apps/web/)
npm install
npm run dev
- Frontend: http://localhost:3000
- Backend: http://localhost:8000
- API Docs: http://localhost:8000/docs
Stack
- Frontend: Next.js 14, TypeScript, Tailwind CSS, TradingView Lightweight Charts
- Backend: FastAPI, Python 3.12+, yfinance, yahooquery, Google Gemini
- Database: SQLite (local) / PostgreSQL (production)
Recent Updates
2026-03-24
- Macro: Global Macro & Smart Money dashboard (
/macro), Recharts widgets, FastAPI/api/macro/quadrant,/yield-fx,/smart-money(FRED + yfinance + OECD/DBnomics). - Stability: Sidebar
dynamic(..., ssr: false);useTickerhydration-safe init;app/error.tsx; macro/research layouts use Tailwind grid (removedreact-grid-layout). - News / Filings: Iframe fallback for blocked publishers (e.g. Yahoo); SEC filings show plain text when HTML snapshot cache is absent.
Earlier
- Multi-asset analysis branching across Overview/Research/Valuation/Earnings for equity, ETF, and commodity futures.
- Commodity and ETF market widgets; index-level stock heatmap with interactive index switching.
- Portfolio OCR upgrades, exchange selection (e.g. SMSN →
SMSN.L), inline edit/delete; exchange-aware recalculation and FX matrix for multi-currency display.