mirror of
https://github.com/shawnkim1997/All-in-one-Financial-Analysis.git
synced 2026-08-20 14:18:05 +00:00
- Add missing numpy, scipy, dbnomics to requirements.txt (fixes ImportError on fresh install) - Sync claude.md with actual codebase: §3 file structure (37 services, 21 routers), §5 API endpoints (92 routes), §6 frontend pages (12), §13 TODO status - Update README.md with current architecture (92 API routes, 21 routers, 37 services), multi-asset overview, research grid, macro dashboard, screener+backtest, multi-jurisdiction filings, and 2026-03-26 changelog entry - Add new routers: dart, edinet, fmp, macro, research - Add new services: cache, dart_fetcher, dart_filing_service, economic_calendar, ecos_fetcher, edinet_filing_service, fmp_client, global_macro_quadrant, kpi_history_service, macro_cycle, macro_fetcher, oecd_cycle, peer_comparison_service, research_dashboard, smart_money_service, yield_fx_service - Add new frontend: macro page, screener+backtest, research grid components, overview (Equity/ETF/Commodity), filings (SEC/DART/EDINET), error boundaries - Remove 6 unused services: copilot_context, crypto_fetcher, fx_fetcher, gemini_analysis, market_data, technical_analysis - Remove obsolete docs: .agent/, AGENT.md, ATLAS_EVALUATION.md, docs/ Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
42 lines
1.6 KiB
Markdown
42 lines
1.6 KiB
Markdown
# ATLAS Terminal — Web Application
|
|
|
|
> Next.js 14 + FastAPI full-stack financial analysis terminal.
|
|
>
|
|
> See the [main README](../README.md) for full documentation.
|
|
|
|
## Quick Start
|
|
|
|
```bash
|
|
# 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)`; `useTicker` hydration-safe init; `app/error.tsx`; macro/research layouts use Tailwind grid (removed `react-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.
|