React symbol search component extracted from a larger private trading dashboard project.
src/SymbolSearch.jsx— main component
A frontend React symbol search component designed for broker-style APIs (e.g. tastytrade-style instrument metadata).
- Equities + futures search
/ES,ESU4,AAPLnormalization- Keyboard navigation
- Client-side caching
- No credentials in the frontend
- Backend-agnostic (proxy required)
This component does not:
- Store API keys
- Call broker APIs directly
- Expose account data
All network requests are expected to go through a backend proxy.
This is an early extraction from a private project. It’s shared to gauge usefulness and may evolve, change, or be archived.
<SymbolSearch onSelect={(symbol) => console.log(symbol)} />