I/B/E/S EPS and LTG forecasts

Dear Community,

I have been trying to understand the data content and coverage of I/B/E/S forecasts for General Motors. Using the following code, I am only able to retrieve data starting from 2010, presumably due to the company's restructuring that occurred around that time. However, I’m surprised that LSEG does not provide historical data prior to this event, particularly for such a large and established company like GM.

ek.get_data('GM.N', ['TR.LTGMean.date', 'TR.LTGMean', 'TR.LTGMedian'], {"SDate":" 1968-01-31 ", "EDate" : "0", Frq" : "M"})

I find it hard to believe that there is no coverage of Long-Term Growth (LTG) and EPS forecasts before 2010. Has anyone else encountered this issue? Is there any way to access the historical forecasts prior to major company events, or does anyone know of a manual that provides more detailed information on I/B/E/S coverage, given its extensive data?

Thank you in advance for any insights!

Best regards,
Alina

Tagged:

Best Answer

  • Jirapongse
    Jirapongse ✭✭✭✭✭
    Answer ✓

    @Alina Steshkova

    Thank you for reaching out to us.

    I found this one:

    df, err = ek.get_data('GM.N^F09',
                          ['TR.LTGMean.date', 'TR.LTGMean', 'TR.LTGMedian'], 
                          {"SDate":"1968-01-31 ", "EDate" : "0", "Frq" : "M"})
    df.dropna().drop_duplicates()

    However, you need to contact the helpdesk team directly via MyAccount to confirm it.

Answers