Hi
I download historical fundamental data for number of companies
How can I get it with date of financial statement?
Like "RH=date" in excel.
Tried to get date with one of parameters like,
parameters = [
"TR.F.TotAssets.date",
"TR.F.TotAssets",
"TR.F.ComEqTot",
"TR.F.TotRevenue",
"TR.F.GrossProfIndPropTot",
"TR.F.EBIT",
"TR.F.EBITDA",
"TR.F.NetIncAfterTax",
"TR.F.IncBefDiscOpsExordItems",
"TR.F.NetCashFlowOp",
"TR.F.NetCashFlowInvst",
"TR.F.LeveredFOCF",
"TR.F.IntrExpn",
"TR.F.ReturnCapEmployedPctTTM",
"TR.F.ReturnAvgTotAssetsPctTTM",
"TR.F.ReturnAvgComEqPctTTM",
]
parameters_properties = {
"SDate": 0,
"EDate": -40,
"Period": "LTM",
"FRQ": "FI",
"Curn": "USD",
"Scale": 0,
}
df, err = ek.get_data(ticker, parameters, parameters_properties)
But if for some reason there no data for some parameter for some period, I get data frame with no relation between columns
For example COOP.O has null values for assets, so i get dataframe that starts with 30/09/2020 data for assets and 31/03/2021 data for rest of the fields in same row.
Thanks