subscribeToInstrumentInfo method

void subscribeToInstrumentInfo({
  1. required String symbol,
})

Implementation

void subscribeToInstrumentInfo({required String symbol}) {
  log.i('Subscribe to the latest symbol information.');
  websocket.subscribeTo(topic: 'instrument_info.100ms', symbol: symbol);
}