Hi Team,
trying to get benchmark name and ric for several ETFs (using their respective rics).
The following code works perfectly for listed/ active ETFs:
fields = ["TR.FundBenchmarkName", "TR.FundBenchmarkType", "TR.FundBenchmarkInstrumentRIC"]
ric = "SPY"
benchs = rd.get_data(ric, fields=fields)
However, for all delisted/ liquidated ETFs usually no data is returned or is missing, e.g., ric = "AAIT.O^H15"
I wasn't able to make it work using the search function if that would be an alternative [rdp.search()]
Is there any way to retrieve that data using the python API?