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
3 0 0 2

Python API return different results from Excel

I want to get the fair value for NYMEX futures. This is the code in Python:

df = ek.get_timeseries(['NGFVc1', 'NGFVc2', 'NGFVc3'], fields='CLOSE',
                       start_date='2019-05-01', end_date='2019-05-14',
                       interval='hour')

What I found was that it contains some major discrepancy with Excel:

=RHistory("NGFVc1;NGFVc2;NGFVc3",".Timestamp;.Close","START:01-May-2019 END:13-MAY-2019 INTERVAL:60M",,"TSREPEAT:NO SORT:ASC CH:IN;Fd",A2)

I searched and found some similar issues on this forum in 2017 and 2018. Was the issue fixed?

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.

1 Answer

· Write an Answer
Upvotes
Accepted
39.4k 77 11 27

I'm not sure which threads on the forum you refer to. And I don't see any discrepancy in data returned between get_timeseries method and RHistory worksheet function. The only discrepancy I see is in the timezone. Eikon Data APIs interpret time values in input parameters as time values in GMT and return timestamps in GMT. RHistory by default uses timezone defined in Windows Date & Time settings. Add "TIMEZONE:GMT" to the Request argument of RHistory function and you'll see it returning the exact same result as get_timeseries method.

=RHistory("NGFVc1;NGFVc2;NGFVc3",".Timestamp;.Close","START:01-May-2019 END:13-MAY-2019 INTERVAL:60M TIMEZONE:GMT",,"TSREPEAT:NO SORT:ASC CH:IN;Fd",A2)
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.

Thanks for the help Alex. The timestamps come out as naive datetimes so I thought it was in local timezone already.

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.