Could anyone please provide an example of how to retrieve the index constituents, BEL20 for instance, using Elektron API?
I think a RIC for BEL20 index is 0#.BFX. You can use this RIC with the consumer.series200.example270_SymbolList example in the EMA Java package. You need to modify the code in the main function.
consumer = EmaFactory.createOmmConsumer(EmaFactory.createOmmConsumerConfig().host("ipaddress:14002").username("user")); consumer.registerClient(EmaFactory.createReqMsg().domainType(EmaRdm.MMT_SYMBOL_LIST).serviceName("ELEKTRON_DD").name("0#.BFX"), appClient, 0); <br>
Please change the following information in the code:
The output looks like:
For other indices, you can contact the Helpdesk support mentioned by Nick for valid RICs.
Hi @JNeves,
For content related queries, the best resource is to direct questions to the Thomson Reuters Helpdesk, which you can reach by either calling the Helpdesk number in your country or using Contact Us capability in Eikon application, or following the link below: https://mytr.thomsonreuters.com/content/mytr/en/signin.html?.
Thanks. It is working. With it, for a given index RIC, I can get the RIC of that index constituents. Do you know if is possible to get directly the ISIN_CODE of those constituents? To avoid to perform a new consult per constituent to get it.