Help in fetching a list of fields from eikon, without the TR. code

We are trying to download data with python. We have tested it on data = ek.get_timeseries(symbol, fields=['CLOSE', 'Volume'], start_date=start_date, end_date=end_date) For a list of RIC's, which works.What are the field names for Analyst ratings, PEg ratios, put-call ratios, return volatility, size? And is it also possible to download data on insider holdings %, avg. board tenure, board meeting attendance?


Best Answer

  • Jirapongse
    Jirapongse admin
    Answer ✓

    @sven.driessen

    Thank you for reaching out to us.

    I suggest to use the Refinitiv Data Library for Python instead.

    If you use the rd.get_history method without specifying fields, the library will return historical data of all available real-time fields (without TR prefixed).

    This method also supports the TR fields. You can use the Data Item Browser tool to search for the TR fields.

    You can also refe to the examples on GitHub.