Upgrade from Eikon -> Workspace. Learn about programming differences.

For a deeper look into our Eikon Data API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
43 5 2 7

missing output during specific timeframe

I am trying to run the below formula in Python.

start_date = str(20140901) 
end_date = str(20140701) 
data, error = eikon.get_data("GBSN.PK", "TR.ClosePrice.calcdate",
{"SDate":start_date, "EDate":end_date} )
data

Unfortunately, it return an empty dataframe. If I change the start_date to str(20150101) or any later date, it works fine and I do see data for the time period between July and September 2014.

Why is the formula not working for this specific time period?

eikoneikon-data-apipythonrefinitiv-dataplatform-eikonworkspaceworkspace-data-api
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

@alex putkov. @joris.hoedevangers could you please have a look at this issue?

Upvotes
Accepted
166 13 18 21

The stock has prices from Oct 9 2014 onwards...

Interesting case: https://seekingalpha.com/article/3967335-great-basin-scientific-3_23-equals-14700

In case you suspect data is incorrect, please contact the Helpdesk so they can start an investigation.

In Excel:


simclose.jpg (29.6 KiB)
gbsn.jpg (48.6 KiB)
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

@sim19

I'm unsure whether you have contacted helpdesk team or not.

If you don't know how to submit a ticket to them, please go to https://my.thomsonreuters.com/ContactUsNew and choose 'I believe content is incorrect or incomplete' link.

Upvotes
24 8 7 11

not quite related, but it seems the start date is later then end date?

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

When SDate<EDate, the case is incorrectly handled. Please check this link

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.