Hi all,
Could you pls advise on the following issue.
I try to find all US stocks which are traded on Munich Gettex Exchange (code: XMUN). When I do it via Eikon API Screen in Python I get only ~250 items:
fields = ['TR.ISIN','TR.InstrumentType','TR.CompanyName','TR.ExchangeName','TR.CompanyMarketCap(Scale=9)','TR.TRBCActivity','TR.TRBCEconomicSector']
US_stocks_on_XMUN = 'SCREEN(U(IN(Equity(active,public,countryprimaryquote))), \
IN(TR.ExchangeMarketIdCode,"XMUN"), \
IN(TR.RegCountryCode,"US"), \
Contains(TR.InstrumentType,"Ordinary Shares"), \
CURN=EUR)'
US_stocks_XMUN, err = ek.get_data(US_stocks_on_XMUN, fields)
... but when I do it manually via advanced search (Universe = "Equities" & Type of Equity = "Ordinary Shares" & Exchange = "GETTEX" & Country of issuer = "United States") I get a correct result (around 2000).
Could you pls advise how I could do it programmatically via Eikon and/or via RDP.
Thanks