Field descriptions

Hello,

Is it possible to pull the field Descriptions when using the EIKON data API? I am using the ek.get_data() function.


Thank you.


Best,

David

Best Answer

  • Hi @dpi.eco

    I think that you may try a TR. field name with the suffix ".description" to get the same result as in the DIB tool.

    df, err = ek.get_data('VOD.L',['TR.PriceClose','TR.PriceClose.description'])
    df

Answers