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
1 3 3 3

Rtget in python

Would like to replicate the below eikon excel api expression in python

=RtGet("IDN","0001DIVCF.HK","ROW80_13")


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.

@kenneth.fung

Thank you for your participation in the forum. Are any of the replies below satisfactory in resolving your query? If yes please click the 'Accept' text next to the reply that best answers your question. This will guide all community members who have a similar question. Otherwise please post again offering further insight into your question.

Thanks,

-AHS

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

Thanks,


AHS

1 Answer

· Write an Answer
Upvotes
Accepted
4.3k 2 4 5

Hi @kenneth.fung ,

You can try this:

>>> import eikon as ek
>>> ek.set_app_key(<your app key>)
>>> df, err = ek.get_data("0001DIVCF.HK", "ROW80_13")
>>> df
     Instrument                                           ROW80_13
0  0001DIVCF.HK            06 Sep 2024          0.000          ...
>>> df.at[0,"ROW80_13"]
'          06 Sep 2024          0.000                        '
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.