Equivalent FieldIDs for existing Eikon screens.

How can I find out the equivalent Field IDs for the columns on the attached screen?

I want to programmatically get a list of all code changes for an instrument.

Kind regards

image

Dean

Best Answer

  • hi @ps15a - you can use the TR.EVENTS fields to get some of what you are looking for - but name changes etc will not be available as only a subset of those available in the GUI Screener tool are exposed.

    df,err = ek.get_data(["PSL.AX"], ["TR.EventStartDate", "TR.EventType", "TR.EventTitle"],{"SDate":"2007-11-28","EventType":"ALL", "EDate":"2020-08-31","CH":"Fd","RH":"IN"})
    df

    image

    I hope this can help.

Answers