Hello! I'm trying to get the RICs for all stocks listed on the Shanghai Stock Exchange, but it seems to keep returning an empty table. Does it support SQL queries? Or where can I verify this myself ? like which place in the workspace to check if it's written correctly? tks.
df = rd.discovery.search(
view=rd.discovery.Views.SEARCH_ALL,
filter="(AssetCategory eq 'Equity') and (ExchangeCode in ('SHG' 'SHA'))",
select='RIC, CompanyName, ExchangeCode',
top=100 # Limit the number of returned results for quick verification
)