Eikon api returns nan values

The DRYH-MCZBJA-SUG Ticker returns NAN values when pulled through the eikon api. I have tried adding CHT to the end of the ticker name (DRYH-MCZBJA-SUG CHT) but this limits the start and end date that can be pulled.

Best Answer

  • @research5 You haven't posted your request but this is working for me:

    df,err = ek.get_data('DRYH-MCZBJA-SUG',['TR.CLOSEPRICE.date','TR.CLOSEPRICE'],{'SDate':'0','EDate':'-5000','Frq':'D'})
    df

    image

    I hope this can help.