searchSymbolsStreamer abstract method

Stream<String> searchSymbolsStreamer(
  1. String query
)

Search for symbols matching query. Called once per debounced keystroke — the chart takes only the stream's first emission, so a single result (or an empty "[]") is enough; no need to keep pushing updates for the same query.

Same JSON shape as optionSymbols (array of symbol objects).

Implementation

Stream<String> searchSymbolsStreamer(String query);