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
7 4 4 7

How can I get historical FX forward values in Python (Eikon data API, Codebook)?

Good afternoon!

I need to download historical daily FX 1-month forward values (open, high, low, close) for some liquid currencies (Canadian dollar against USD etc). I am also interested in downloading daily historical data for FX spot rates (open, high, low, close). I am currently working with Python Eikon data API in Codebook in Eikon web version.

How can I do that (wia ek.get_timeseries, ek.get_data or some other way)? I would be grateful for any help or suggestions.

eikon-data-apipythonpython 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.

Upvote
Accepted
32.2k 40 11 20

Hello @lozovoy.hse ,

With get_timeseries call, available fields are the ones that you see in the example above, as without specifying the fields a parameter to get_timeseries, we get all the fields that are available.

With get_data, we can research the fields that are available for the instrument using Data Item Browser tool within Eikon desktop or Refinitiv Workspace desktop, for example:

cad1m.gif

Next, to see what is available via time series, we only leave time series checked, unchecking realtime and static fields:

cad1m2.gif

Therefore, this field is not available as timeseries/history via get_data, only as realtime.

For more insight on content availability, the best approach is to refer the content questions directly to Refinitiv content experts, via Refinitiv Helpdesk Online -> Content -> Eikon, this forum will be more helpful to you with API usage questions.

As additional information that may be of interest, Refinitiv Tick History product includes this content, and offers the best coverage of tick history requirements. If you may need this, I would suggest to discuss your requirements in detail with your Refinitiv account team.



cad1m.gif (229.7 KiB)
cad1m2.gif (156.3 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.

Upvote
32.2k 40 11 20

Hello @lozovoy.hse ,

I would try ek.get_timeseries, first.

Having examined the results, you can decide, if this is sufficient for your requirement, and if not, try get_data and parametrization per Eikon Data APIs for Python - Reference Guide.

For example:

import eikon as ek
ek.set_app_key('YOURVALIDKEYHERE')
ek.get_timeseries(['CAD1M=','CAD='],start_date='2020-05-04',end_date='2021-10-04')

Results in:

cad.gif

Hope this information helps



cad.gif (42.3 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.

Upvotes
7 4 4 7

@zoya faberov Thank you for quick response! Your answer is helpful. I have an additional question: is it possible to get data for daily bid and ask for the same tickers? For instance, close bid for 'CAD1M=' and close ask for 'CAD1M= '.

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
7 4 4 7

Good evening!

@zoya faberov Thank you so much for your detailed answer! Now I got all the information I needed, so I am closing the question.

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.