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

Welcome!

It looks like you're new here. Sign in or register to get started.

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

Welcome!

It looks like you're new here. Sign in or register to get started.

Welcome!

It looks like you're new here. Sign in or register to get started.