Hi, I am trying to retrieve the data on outstanding shares, but I find only yearly data in the output while data like volume can have daily outputs with no problem.
code:
import eikon as ek
dt,err=ek.get_data('CYAD.BR', ['TR.Volume.Date','TR.Volume','TR.NumberofSharesOutstandingActual','TR.TtlCmnSharesOut'], parameters={'SDate':'2000-01-01', 'EDate':'2019-12-01'})
dt.to_csv("test.csv")
And the output is like this:
While the volume can have daily output just fine, I find the two variables on outstanding shares only have yearly output.
Is there a way to get daily output on these variables? Or maybe a way to force daily time intervals?
Many thanks!