
QuantView — Market Analytics Platform
LiveFree, no-paywall portfolio analytics for investors who want real insight without the clutter.
QuantView is a market analytics engine and dashboard built for quant-curious investors who find existing tools either paywalled or painful to use. Most free platforms are cluttered, assume prior expertise, and bury the useful output behind configuration forms. QuantView takes the opposite approach: configure a portfolio of up to ten symbols, pick a time range, and the analytics are right there on the same page.
The backend is written in C++ — chosen because the compute-heavy paths (rolling risk metrics, bootstrap simulations, portfolio analytics across large symbol universes) would be a meaningful bottleneck in an interpreted language. It compiles to a self-contained binary, runs on a single Ubuntu server, and talks to a TimescaleDB instance for time-series storage. Market data is sourced from Alpaca Markets and stored locally, so outputs are consistent and don't depend on third-party availability at query time. A scheduled cron pipeline handles end-of-day ingestion and pre-computes daily analytics snapshots so API responses stay fast.
The dashboard surfaces: cumulative portfolio returns, a rolling risk and performance grid (annualised volatility, Sharpe, Sortino, max drawdown, VaR 95%, Expected Shortfall, beta, alpha, Calmar), a holding-period return distribution, and a forward return cone — a block-bootstrap simulation over 2,000 paths that gives a percentile spread of possible outcomes without pretending to be a forecast.

