mirror of
https://github.com/shawnkim1997/All-in-one-Financial-Analysis.git
synced 2026-08-05 23:07:45 +00:00
b2acda81ee
Complete migration from Streamlit to Next.js 14 App Router + FastAPI backend. Frontend (Next.js 14): - 10 pages: Overview, Research, Valuation, Technical, Markets, Earnings, News, Portfolio, Filings, Settings - Terminal Noir dark theme with custom Tailwind config - TradingView Lightweight Charts for candlestick/volume - Valuation: DCF, Sensitivity Matrix, Monte Carlo, Tornado, Reverse DCF - Financial Statements table with YoY growth badges and margin rows - SEC EDGAR inline filing viewer with section tabs - News split-view with iframe article embedding - Technical Analysis with RSI, MACD, Bollinger, Fibonacci, Moving Averages - Earnings beat/miss visualization - AI Copilot chat panel with Gemini integration Backend (FastAPI): - 13 routers: market_data, financials, valuation, technical, earnings, insider, edgar, news, portfolio, analysis, chat, estimates, fx - Services: DCF engine, Monte Carlo simulation, sensitivity analysis, risk metrics, SEC parser, technical indicators - yfinance + yahooquery data sources with fallback pattern - SQLite caching layer Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
417 B
Bash
16 lines
417 B
Bash
#!/bin/bash
|
|
# README를 GitHub에 올리기 위한 명령 (한 줄씩 터미널에 복사해서 써도 됨)
|
|
|
|
cd /Users/seonpil/.cursor/worktrees/FQDC_Project/ici
|
|
|
|
git checkout -b main
|
|
|
|
git add README.md
|
|
|
|
git commit -m "Add README for GitHub"
|
|
|
|
# 아래 URL을 본인 GitHub 저장소 주소로 바꾼 뒤 실행
|
|
# git remote add origin https://github.com/본인아이디/저장소이름.git
|
|
|
|
# git push -u origin main
|