How can i download Tobins q ?

I want to do a esg performance analye and i want to measure the performance with tobins q, but i cant find it by refinitiv eikon


Best Answer

  • @christopher.almeling Thanks for your question - you can calculate Tobin's Q ratio using the following:

    import refinitiv.data as rd
    rd.open_session()
    df = rd.get_data(
        universe=['VOD.L'],
        fields=['TR.F.MktCap.date','TR.F.MktCap','TR.F.TotAssets'],
        parameters = {'SDate': -10,'EDate':0,'FRQ':'FY'}
    )

    df['TobinQ'] = df['Market Capitalization'] / df['Total Assets']
    df

    1675352491245.png


    I hope this can help.


Answers