For a deeper look into our Eikon Data API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
1 1 2 1

Rtget in python

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

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


eikoneikon-data-apiworkspaceworkspace-data-apirefinitiv-dataplatform-eikonpython
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 5.0 MiB each and 10.0 MiB total.

1 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 5.0 MiB each and 10.0 MiB total.

Click below to post an Idea Post Idea