I have been tasked with building a component that does the following:
- List all upcoming Economic Indicators
- Subscribe to (a subset) of those ECIs to get latest updates on forecast, actual values and date changes
My plan is a twofold approach:
First a "request-response" type request to retrieve a list of all upcoming Economic Indicators (defined by a date range, e.g. the next 3 months)
Second a "subscribe" type request to subscribe to updates (forecast + actual + date changes) on specific RIC codes (for example "USCFNA=ECI")
Does this sound viable?
How would the messages look like that I have to send to the websocket? (I already managed to send a Login message successfully...
Many thanks!
Wolfgang