Hello Team,
Given a RIC of a Fund that seeks to track an index (for example : "ISF.L")
Could you please show me how to get the RIC of the underlying index automatically that is supposed to be tracked within the API Reuters LSEG.DATA?
here are the fields i tested (not working could only get the "name" of the underlying index)
import lseg.data as ld
etf_info = ld.get_data( universe="ISF.L",
fields=[ 'TR.FundBenchmarkName', # Nom de l'indice de référence 'TR.FundBenchmarkRIC', # RIC de l'indice de référence
'TR.UnderlyingRIC', # RIC sous-jacent
'TR.IndexRIC', # RIC de l'indice
'TR.BenchmarkRIC', # RIC du benchmark
'TR.FundObjective', # Objectif du fonds
'TR.FundTrackingIndex', # Indice suivi
'TR.ReplicationIndex' # Indice de réplication ])
Thank you very much for your help