Getting both quarterly and semiannual data

Hi,

I need to download quarterly data for some stocks but I realized that some stocks report only or semiannual, some for quarterly, and some use mix sometimes. I wonder is there any way I can download it in mixed form like this.?

Thank you so much.

This is the result of the desktop app.

image

I used this code for Eikon API. I try to change FQ to FI but still only quarter or semiannual show up

parameters = {'Period':'FQ0', 'SDate':0, 'EDate':-25, 'Frq':'FQ', 'Curn':'EUR'}

dfx, err = ek.get_data('CTDM.SI'

,['TR.BSPeriodEndDate.fpa,'TR.ISPeriodEndDate.date','TR.ISPeriodEndDate'

],parameters)

or

parameters = {'Period':'FI0', 'SDate':0, 'EDate':-25, 'Frq':'FQ', 'Curn':'EUR'}

dfx, err = ek.get_data('CTDM.SI'

,['TR.BSPeriodEndDate.fpa,'TR.ISPeriodEndDate.date','TR.ISPeriodEndDate'

],parameters)

Best Answer

  • @Ha.T.Nguyen As far as I know there is no mixed period setting - practically you would need to request some combination or all of FQ, FI, FY, FS separately and then merge or join them into one frame. I hope this can help.

Answers