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...?! :D
Thanks in Advance!
XeL
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.
@XeL Ariona @Alex Putkov.
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?
Neat!
How would this work for
Many thanks!
The best way to explore this capability is through the GUI in Eikon Excel add-in. Click on the Screener button in Thomson Reuters ribbon in Excel.