How to get data on companies that have been listed on the STOXX Europe 600 from 2015-2022?

Hi,

I want to identify those companies that have been listed on the STOXX Europe 600 during the whole period of 2015-2022, and exclude those that have joined or leaved during the period. Is there a simple way to do this?


Sort by:
1 - 1 of 11

    @lauri.karimo Thanks for your question - here is how you can get a list of leavers and joiners using the Refinitiv Data Libraries:

    import refinitiv.data as rd
    rd.open_session()
    rd.get_data(['.STOXX'], 
                ['TR.IndexJLConstituentChangeDate','TR.IndexJLConstituentRIC.change','TR.IndexJLConstituentRIC'],
                {'SDate':'-1Y', 'EDate':'-7Y', 'IC':'B'})

    1695903948246.png

    Is this what you are looking for? I hope this can help.