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

642 B · 11 lines · MySQL Raw History
 1-- Phase 3 drops short-horizon prediction. The Day/Week/Month/Quarter pickers,
 2-- the /backtest page, and the once-a-day snapshot job that fed it are all gone;
 3-- the home page now reads quality off the existing health composite. Nothing
 4-- writes or reads the `picks` table any more, so remove it and sweep the stale
 5-- scheduler bookkeeping the job left in the status tables (otherwise /health
 6-- would keep showing a "picks" job frozen at its last run forever).
 7DROP TABLE IF EXISTS picks;
 8DELETE FROM data_status WHERE job = 'picks';
 9DELETE FROM fetch_log   WHERE job = 'picks';
10DELETE FROM meta        WHERE key = 'picks_snapshot_date';