import refinitiv.data as rd
from refinitiv.data.content import search
rd.open_session()
df = search.Definition(
view=search.Views.FUND_QUOTES,
select="RIC,TickerSymbol,DocumentTitle,ExchangeCode,AssetStateName,CommonName,ExchangeName,FundType,FundClassCurrency,IssuerCountry,AssetType,",
filter="AssetStateName eq 'Active' and AssetType eq 'Mutual Funds'",
top=0,
navigators="ExchangeCode"
).get_data()
df.data.raw["Navigators"]['ExchangeCode']
For the filters, what is the correct Asset Type to look for Mutual Funds as the above code returns an empty list?