registerSnapshotParameters(parameters: SnapshotParameters): HandleRegister parameters to use for snapshots.
parameters: SnapshotParametersThe parameters.HandleregisterSubscriptionParameters(parameters: SubscriptionParameters): HandleRegister parameters to use for subscriptions.
parameters: SubscriptionParametersThe parameters.Handlesnapshot(topic: TopicRequest, handler?: ISnapshotHandler, snapshotParameters?: Handle): SnapshotHandleSnapshot a topic.
topic: TopicRequestThe topic to snapshot.handler?: ISnapshotHandlerThe optional snapshot handler.snapshotParameters?: HandleThe optional handle of the snapshot parameters to use.SnapshotHandlesubscribe(topic: TopicRequest, handler?: ISubscriptionHandler, subscriptionParameters?: Handle): SubscriptionHandleSubscribe to a topic.
topic: TopicRequestThe topic to subscribe to.handler?: ISubscriptionHandlerThe optional subscription handler.subscriptionParameters?: HandleThe optional handle of the subscription parameters to use.SubscriptionHandlequery(query: TagQuery, handler?: IQueryHandler): QueryHandleQuery for topic ids matching a tag expression.
query: TagQueryThe tag expression to query.handler?: IQueryHandlerThe optional query handler.QueryHandlequerySnapshot(query: TagQuery, handler?: ISnapshotHandler, snapshotParameters?: Handle): SnapshotHandleSnapshot topics using a query.
query: TagQueryThe tag expression to snapshot.handler?: ISnapshotHandlerThe optional snapshot handler.snapshotParameters?: HandleThe optional handle of the snapshot parameters to use.SnapshotHandlequerySubscribe(query: TagQuery, handler?: ISubscriptionHandler, subscriptionParameters?: Handle): SubscriptionHandleSubscribe to topics using a query.
query: TagQueryThe tag expression to subscribe to.handler?: ISubscriptionHandlerThe optional subscription handler.subscriptionParameters?: HandleThe optional handle of the subscription parameters to use.SubscriptionHandletimeSeriesTicks(topic: TopicRequest, options: TickOptions, handler?: ITimeSeriesHandler): TimeSeriesHandleRequest time series tick data. This is used to get the details of ticks for a given topic.
topic: TopicRequestThe topic to request data for.options: TickOptionsThe options detailing the requested data.handler?: ITimeSeriesHandlerThe optional time series handler.TimeSeriesHandletimeSeriesIntradayBars(topic: TopicRequest, options: IntradayOptions, handler?: ITimeSeriesHandler): TimeSeriesHandleRequest time series intraday bars. This is used to get summary information for a given topic summarised over an interval specified in minutes.
topic: TopicRequestThe topic to request data for.options: IntradayOptionsThe options detailing the requested data.handler?: ITimeSeriesHandlerThe optional time series handler.TimeSeriesHandletimeSeriesHistoryBars(topic: TopicRequest, options: HistoryOptions, handler?: ITimeSeriesHandler): TimeSeriesHandleRequest time series history bars. This is used to get summary information for a given topic summarised over an interval specified in a minimum of days.
topic: TopicRequestThe topic to request data for.options: HistoryOptionsThe options detailing the requested data.handler?: ITimeSeriesHandlerThe optional time series handler.TimeSeriesHandledisconnect(): voidDisconnect from a gateway.
voidreadonly disconnected: Promise<void>Use this property to monitor the life of a connection. It will be resolved upon a successful user-initiated disconnection or rejected if an unexpected break in the connection occurs. NB the API will not attempt to automatically reconnect.