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

Target Currency (Conversion) for Timeseries

Hi All,

I'm facing the problem, that i cannot pull intraday timeseries (e.g. for MSFT.O) converted in an target currency.

The following code allows to pull EoD data and an target currency:

df, err = ek.get_data('AAPL.O',['TR.PriceClose.date;TR.PriceClose'],
           {'SDate':'2023-05-01', 'EDate':'2023-07-01', 'CURN':'EUR'})

Question: Which function shall i use, to get the intraday timeseries in an 5min frequency that is converted in an target currency?

Many Thanks,

Frank

eikon-data-api#technology#contentrefinitiv-data-platformtimeseries
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.

Hi @frank.marsollek ,

Thank you for your participation in the forum. Is the reply below satisfactory in resolving your query?

If so please can you click the 'Accept' text next to the appropriate reply? This will guide all community members who have a similar question.

Thanks,
AHS

@FrankMars

Hi,

Please be informed that a reply has been verified as correct in answering the question, and marked as such.

Thanks,

AHS

1 Answer

· Write an Answer
Upvotes
Accepted
14.2k 30 5 10

Hi @frank.marsollek ,

To get the timeseries data, the ek.get_timeseries function can be used.

ek.get_timeseries(['AAPL.O'],
                  start_date = "2023-05-01",
                  end_date = "2023-07-01",
                  interval='minute')

1691398917270.png

You can run help(ek.get_timeseries) to see the available parameters, which you could see the possible intervals, the minute interval is available, you can use minute and then filter to get the data of 5 mins interval instead

interval: string
        Data interval.
        Possible values: 'tick', 'minute', 'hour', 'daily', 'weekly', 'monthly', 'quarterly', 'yearly' (Default 'daily')
        Default: 'daily'

However, please check Eikon Data API Usage and Limits Guideline to prevent the missing data from limit reaching


1691398917270.png (36.9 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.

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.