Is there any possibility to retrieve all RICS related to the certain PERMID using Python Eikon Data

I have a list of permids. I would like to retrieve all RICs connected to these permids.


Content team advised me to post a request here.

Tagged:

Best Answer

  • Jirapongse
    Jirapongse admin
    Answer ✓

    @alekseenkova.marina

    You can try this code:

    df, err = ek.get_data(
    instruments = ['55838323096','55850485015','21538366477'],
    fields = ['TR.RIC'])
    df

    The output is:

    1653290838401.png

Answers