repos
/ finance-rust master

finance-rust

mirror archived upstream

Single-binary self-hosted market watcher for stocks, ETFs, indexes, and futures: live charts, key stats, fundamentals, SEC filings, and SSE streaming.

axumdockerfinancerustself-hostedsqlitestocksvite

425 B · 11 lines · JavaScript Raw History
 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();