Is there a way to get Standalone data of a Conglomerate using Eikon API ?

1635290140372.png

Something like this where I can find just Parent Co.'s numbers and not just consolidated numbers.

Best Answer

  • @bhavin153 So you can just set the Consolidation Basis you want Primary, Parent, Consolidated or All. See the screenshot from the Data Item Browser app:

    1635335219577.png

    In code here we request the entire income statement using the ConsolBasis parameter:

    df,err =. ek.get_data('VOD.L',['TR.F.IncomeStatement(Period=FY0,ConsolBasis=Consolidated)'])
    df

    I hope this can help.