Hi Team, Hi Nick
nick.zincone
is there any reason why the below query gives results on Advanced Search Tool of EIKON, but not in RDP?
Also, how can I get the constituents (and weights thereof) of whatever Equity Index that comes out of the query below?
import refinitiv.dataplatform as rdp
rd.open_session()
sFilter = "( SearchAllCategoryv2 eq 'Indices' and ((CommonName eq 'MSCI All Country World')))"
sSelect = "RIC, CommonName,ConstituentExchangeName,IssuerCommonName,BusinessEntity,PrimaryChainRIC,RCSAssetCategoryLeaf,RCSIndexCountryGroupLeaf"
GroupSize = 5000
res = rd.discovery.search(view = rd.discovery.Views.INDEX_INSTRUMENTS, filter=sFilter, query = sSelect) # INDEX_INSTRUMENTS
print(res)
Thanks
Grigorios