Binance propose une variété de canaux sur lesquels vous pouvez vous abonner pour obtenir des mises à jour en temps réel des données de marché, des ordres... Voici un exemple d'abonnement à 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;