Overview
Havklo efficiently handles multiple symbols over a single WebSocket connection. Each symbol maintains independent orderbook state.Basic Setup
Event Processing
Concurrent Queries
The SDK uses lock-free data structures. Query multiple symbols from different threads:Dashboard Example
Tips
Single Connection
All symbols share one WebSocket. No need for multiple connections.
Independent State
Each symbol has its own orderbook. Updates don’t affect other symbols.
Lock-Free Reads
Query any symbol from any thread without blocking.
Automatic Routing
The SDK routes messages to the correct orderbook by symbol.