Binance offre una varietà di canali a cui è possibile sottoscriversi per ricevere aggiornamenti in tempo reale di dati di mercato, ordini... Di seguito è riportato un esempio di come sottoscriversi a un Ticker:
oClient := TsgcWebSocketClient.Create(nil);
oBinance := TsgcWSAPI_Binance.Create(nil);
oBinance.Client := oClient;
oBinance.SubscribeTicker('bnbbtc');
procedure OnMessage(Connection: TsgcWSConnection; const aText: string);
begin
// here you will receive the ticker updates
end;