Get Instruments by exchange or country?
For Python API:
I read at Q&A there is a way to retrieve (limited to 2k) list of instruments by the RSearch COM API.
Is there a current way (beta) or any future plans to do it programmatically by the wonderful Python API..? Screening is one of the main advantages of moving from desktop frameworks to Scripting API's, and if we can't have availability of total universe to start filtering from other fields (MktCap,SecotrIndustryCODE,Type,etc)...so...?!
Thanks in Advance!
XeL
Find more posts tagged with
Screening in the python API already works as long as you know the screening string. To get that, you first build your screen in Eikon application, then click "export as formula", and look at the formula in Excel.
For example, the following gets you 1161 french RICs:
screener_exp = 'SCREEN(U(IN(Equity(active,public,primary))),IN(TR.ExchangeCountryCode,"FR"), CURN=USD)'
companies_data, err = ek.get_data(instruments=[screener_exp], fields=['TR.RIC'])
print(companies_data)
Look at this as well
Maybe Alex meant development of a stand alone screening GUI in the Proxy?
There's no definitive timeframe for it yet, but yes, there's a plan to add equity screener capability (similar to the equity screener in Eikon application and in Eikon Excel) to Eikon Python API. There's currently no plan to introduce criteria search capability for other asset classes.
There's no definitive timeframe for it yet, but yes, there's a plan to add equity screener capability (similar to the equity screener in Eikon application and in Eikon Excel) to Eikon Python API. There's currently no plan to introduce criteria search capability for other asset classes.