Fix S&P 500 universe parse so renames like BNY are discovered.
Deploy / lint (push) Successful in 8s
Deploy / test (push) Successful in 1m6s
Deploy / deploy (push) Successful in 37s

Wikipedia no longer uses plain symbol table cells; parse exchange links and NyseSymbol templates, surface the list source in bootstrap results, and keep legacy cell parsing as a fallback.
This commit is contained in:
2026-07-14 14:14:58 +02:00
parent 644e81d1a3
commit fd21067a40
4 changed files with 104 additions and 21 deletions
+4
View File
@@ -718,10 +718,14 @@ export interface TickerUniverseSetting {
export interface TickerUniverseBootstrapResult {
universe: TickerUniverse;
/** Where the member list came from: wikipedia_sp500 | fmp | cache | seed | … */
source?: string;
total_universe_symbols: number;
added: number;
already_tracked: number;
deleted: number;
/** Sample of newly added symbols (capped server-side). */
added_symbols?: string[];
}
export interface PipelineReadiness {