Hello,
I wanted to know if Eikon has point in time data available?
I am interested in non restatement data using the python API plugin.
For example, the company QKLS.PK had restated their 2009 financial statements. It is available on the website and I wanted to know if and how I could get this data using using the API?
Thank you in advance
------------------------------------------------------------------------------------------------------------------
EDIT: 4/7/2021 at 9:28 EST
Using the code below, I am able to pull the Gross Profit of QKLS.PK for the past 15 years.
In 2009, the Gross Profit for FY 2009 was originally reported in Dec 2009 as 41.0 and then reclassified in Dec 2010 as 43.6.
TR = ["TR.GrossProfit.Date", "TR.GrossProfit"]
id2 = ['QKLS.PK']
df, err = ek.get_data(id2, TR, {'Scale': 6,'SDate': 0,'EDate': -15,'FRQ': 'FY'})
df
When I pull the data using the code above, I get the reclassified value of 43.6 for FY 2009.
I wanted to know if it was possible to pull the original value of 41.0 using python?
Thank you in advance