QuantOS is a personal market analysis dashboard built purely for fun and learning.
It’s not meant to be a production trading platform — the goal was to experiment with charts, indicators, forecasting, UI design, and overall system architecture.
No serious financial intentions.
No trading advice.
Just building stuff.
- Interactive candlestick & line charts
- Multiple timeframes (1D → MAX)
- Technical indicators (RSI, SMA 20, SMA 50)
- Price forecast visualization
- Watchlist support (local storage, no auth)
- Clean, dark, terminal-inspired UI
- Next.js (App Router)
- React
- Tailwind CSS
- TypeScript
- FastAPI (Python)
- REST APIs
- LocalStorage (watchlist)
git clone https://github.com/your-username/quantos.git
cd quantoscd apps/frontend
npm installNEXT_PUBLIC_API_URL=http://127.0.0.1:8000npm run devFrontend will be available at:
http://localhost:3000cd apps/backend
python -m venv .venvActivate the virtual environment:
# macOS / Linux
source .venv/bin/activate
# Windows
.venv\Scripts\activateInstall dependencies:
pip install -r requirements.txtRun the backend:
uvicorn main:app --reload --port 8000Backend will be available at:
http://127.0.0.1:8000- Open the dashboard
- Search for a symbol (BTC, AMZN, AAPL, etc.)
- Switch between candlestick / line charts
- Toggle indicators from More Charts
- Add assets to your watchlist ⭐
- View ML-based forecasts and price behavior
No login.
No accounts.
No setup pain.
✅ Completed
QuantOS is feature-complete for what it was meant to be.
No active development planned unless something interesting comes up.
This project was built mainly for learning and experimentation,
but contributions are welcome.
If you want to contribute:
- Fork the repository
- Create a new branch
- Make your changes
- Open a PR with a short explanation
Keep it simple — clarity over complexity.
All data, indicators, and forecasts are for educational purposes only.
This project is licensed under the MIT License.
See the LICENSE file for details.



