Closed ceddybi closed 3 years ago
And then in prices.updates.ts instead of:
// Matches as requested if (currentTickerType === tickTypeWords) {
Maybe something like:
// Matches as requested if ((typeof currentTickerType === "string" && currentTickerType === tickTypeWords) || currenTickerType.includes(tickTypeWords)) {
@ellis +1
And then in prices.updates.ts instead of:
Maybe something like: