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
40 2 2 1

ek.get_data not providing all data for ticker 'GOLD.N'

Hello,

when using reuters python API, for the ticker = 'GOLD.N' I can only get data since 2019/01/03.

API code: ek.get_data(ticker,['TR.PriceClose;TR.Volume'],{'SDate':date_start,'EDate':date_end,'Frq':'D'})

This ticker has been around for a long time, and when I request data date_start = 1990/01/01 abd date_end = 2020/09/25, the output series only starts in 2019/01/03.


Best

FJ

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.

Upvotes
Accepted
40 2 2 1

Hello Alex. Thank you for chasing this topic. I confirm that is now working correctly.

Best

FJ

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.

Upvotes
39.4k 77 11 27

@f.janeiro

I reproduced the issue you reported and raised it to Refinitiv Helpdesk for investigation. For your reference the case number is 09205378. Refinitiv Helpdesk will reach out to you with the results of their investigation or if they need any further details from you. In the meantime, as an immediate workaround, you can use the following call that does successfully retrieve timeseries of price and volume history for GOLD.N going back to 1990.

ek.get_data('GOLD.N',
            ['TR.CLOSEPRICE.date', 'TR.CLOSEPRICE', 'TR.ACCUMULATEDVOLUME'],
            {'SDate':'19900101', 'EDate':'20200925', 'Frq':'D'})
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.

Upvotes
39.4k 77 11 27

@f.janeiro

Thank you for your participation in the forum. According to the record for case 09205378 the issue you reported has been resolved and the data is now returned correctly. Would you mind confirming it works for you?

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.

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.