(value: number)
| 10 | export type StockCandleInterval = "1D" | "1W" | "1M"; |
| 11 | |
| 12 | const roundPrice = (value: number) => Math.round(value * 100) / 100; |
| 13 | |
| 14 | const toIsoDay = (date: Date) => date.toISOString().slice(0, 10); |
| 15 |
no outgoing calls
no test coverage detected