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// Symbol detail page: the lightweight-charts chart + range selector, and the
2// annual / quarterly financials toggle.
3import "./styles/symbol.scss";
4import { initChart } from "./scripts/chart.js";
5import { initFundamentals } from "./scripts/fundamentals.js";
6import { initGrowth } from "./scripts/growth.js";
7import { initRefresh } from "./scripts/refresh.js";
8
9initChart();
10initFundamentals();
11initGrowth();
12initRefresh();