Single-binary self-hosted market watcher for stocks, ETFs, indexes, and futures: live charts, key stats, fundamentals, SEC filings, and SSE streaming.
axumdockerfinancerustself-hostedsqlitestocksvite
1// Markets dashboard (Phase C). The base entry runs the live stream and patches
2// the watchlist sparkline cards in place; this entry ships the dashboard styles,
3// the normalized %-vs-S&P-500 hero graph + market reads, and the watchlist add /
4// remove controls.
5import "./styles/home.scss";
6import { initHero } from "./scripts/hero.js";
7import { initWatchlist } from "./scripts/watchlist.js";
8
9initHero();
10initWatchlist();