| 16 | ) |
| 17 | |
| 18 | interface StockChartProps { |
| 19 | ticker: string |
| 20 | theme?: 'light' | 'dark' |
| 21 | } |
| 22 | |
| 23 | // Validate ticker format (EXCHANGE:SYMBOL) |
| 24 | function isValidTicker(ticker: string): boolean { |
nothing calls this directly
no outgoing calls
no test coverage detected