How to use Saved Tickers List in Eikon

I have saved a list of tickers that I commonly work on in Eikon, with the name 'Current Univ'

I use this command to fetch data in excel

=@TR("LIST(Current_Univ)","TR.BookValuePerShare","Period=FY0 Frq=D SDate=20160101 EDate=1d CH=IN RH=calcdate",B2)

I want to use the same list of tickers to work in python as well. How can I use this.

Best Answer

Answers

  • @anshulmlhtr

    Yes, refer to the Eikon Data API - Cheat Sheet, you can use the list method in the Eikon Data API.

    ListData,err = ek.get_data("List('test-list1')",['TR.RIC','CF_LAST'])
    ListData
  • The cheat sir is great @jirapongse.phuriphanvichai, though I still can't find a way to implement my query.

    I have already saved some rics/tickers in my Eikon account with the name 'Current Universe'.

    I want to use this list to fetch data, can you please share the ek.get_data( {something here} , TR.PE , ...) type command for the same.