NDA_RAW.NDA_NATIVE_YIELD

Is there a way to download the following data through the Python Eikon api?

RHistory("EU1YT=RR","NDA_RAW.NDA_NATIVE_YIELD;NDA_RAW.NDA_DATE","NBROWS:1 END:03-Jan-2020 INTERVAL:1D",,)


Best Answer

  • zhen.hu
    Answer ✓

    I found the results for this.


    In case anybody need it. It is

    df, err = ek.get_data(instruments=['EU1YT=RR '],

    fields=['TR.FiMaturityStandardOTRYield'],

    parameters={"SDATE": '2020-01-03'})

Answers