For a deeper look into our Elektron API, look into:
Overview | Quickstart | Documentation | Downloads | Tutorials | Articles
I'm developing an application to post to RCRT over RDTS (TREP) using web sockets API. Although I know that I can ask the TREP administrator for details of what services are available, I'd like to do it via program. if not this, is there other info I can request that is NOT a market data instrument request? In other words, I'd like to request something from ADS or RCRT (Contex) (status? version? other attributes?) to verify the connection, not actual instrument data.
Hi @pj.chan,
You can issue the following request:
{ "Key": { "Filter": 1 }, "ID": 2, "Streaming": true, "Domain": "Source" }
The "Filter" value is a mask that provides different levels of details:
, which will provide more details in the response,
Great @nick.zincone.1, thanks for that! I'll give it a go. Is that documented somewhere?
Hi @pj.chan,
There is no specific documentation around this request and the parameters, however, I did refer to the EMA documentation around sending a directory request and determined that the domain is 'Source' and that I needed to apply a 'Filter'. Section 27.2 of the WebSocket Protocol Spec outlines the parameters of a request.