Hi, how do I get the Stoxx 600 constituents list of any given date from Thomson Reuters for excel...

Hi, how do I get the Stoxx 600 constituents list of any given date from Thomson Reuters for excel?Thanks

Best Answer

  • Zhenya Kovalyov
    Answer ✓

    The formula is

    =TR(".STOXX";"TR.IndexConstituentRIC;TR.IndexConstituentName;TR.IndexConstituentWeightPercent";"SDate=2016-06-01")

    The python code:

    import eikon as tr
    tr.set_app_id('blah')
    df, e = tr.get_data(['.STOXX'],
    ['TR.IndexConstituentRIC', 'TR.IndexConstituentName','TR.IndexConstituentWeightPercent'],
    {'SDate':'20160601'})

    image

Answers