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
16 2 5 10

HIGH values not available anymore for US3MINV=RR

Since around 2-3 weeks, I cannot download HIGH value for US3MINV=RR. It was working in the past but now returns "NaN". Please code below :

ReutersCode = 'US3MINV=RR'

ReutersField = 'HIGH'

start_date = '21/10/2021'

end_date = '27/12/2021'

res = ek.get_timeseries(ReutersCode, fields=ReutersField,start_date,end_date, interval=interval,normalize=True)

Please advise. It is critical on our side


eikoneikon-data-apipythonpython apitimeseries
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.

<AHS>

case 10808248 is still in progress, extend the triage

<AHS>

case 10808248 is still in progress, extend the triage

<AHS>

case 10808248 is closed, with the following resolution:

Data corrected by content team. 
Upvotes
Accepted
14.2k 30 5 10

Hi @guillaume.lefur

Thank you for your patience, I'd like to confirm that the issue is fixed hence I'm closing this thread. In case you have any further questions, please start a new question.

1643892131706.png


1643892131706.png (42.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.

Upvotes
884 4 2 8

Hi,
Can you specify value for interval parameter as well here?

In your function call to get timeseries data, keyword argument is placed before positional argument. I have corrected the code by assuming interval value as daily:

ReutersCode = 'US3MINV=RR'

ReutersField = 'HIGH'

start_date = '21/10/2021'

end_date = '29/12/2021'

interval = 'daily'

res = ek.get_timeseries(ReutersCode, ReutersField, start_date, end_date, interval=interval, normalize=True)

display(res)

Let me know if this fixes your issue or if you are still facing any problem with it.

Additionally can you check if you see this same content properly in Eikon/RW Excel. If you do not, I would contact Eikon support to verify your user id permissions.

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
16 2 5 10

Hi,

Unfortunately, I still have the same issue :

Please see below what I get...


Date Security Field Value

0 2021-10-25 US3MINV=RR HIGH NaN

1 2021-11-01 US3MINV=RR HIGH NaN

2 2021-11-08 US3MINV=RR HIGH NaN

3 2021-11-15 US3MINV=RR HIGH NaN

4 2021-11-22 US3MINV=RR HIGH NaN

5 2021-11-29 US3MINV=RR HIGH NaN

6 2021-12-06 US3MINV=RR HIGH NaN

7 2021-12-13 US3MINV=RR HIGH NaN

8 2021-12-20 US3MINV=RR HIGH NaN

9 2021-12-27 US3MINV=RR HIGH NaN

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
14.2k 30 5 10

hi @guillaume.lefur ,

the case number 10808248 was raised on behalf of you to investigate this error, you will be contacted by the support team.

Meanwhile, to get the data, could you try with get_data function instead? an example code is below

res, err = ek.get_data('US3MINV=RR', ['TR.HIGHPRICE','TR.HIGHPRICE.date']                       , {'SDate': '2021-10-21', 'EDate': '2021-12-29', 'Frq': 'D'})
res

1640777264943.png


1640777264943.png (45.7 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
16 2 5 10

Thanks, but the values are incorrect. For exemple, the HIGH value for Dec 27 is 0.085% and for Dec 20 0.075%. Can you please check?

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
24.7k 54 17 14

Hello @guillaume.lefur

case 10808248 is closed because the data issue is fixed. Could you please confirm if the problem still persist on your end?

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.