Would like to replicate the below eikon excel api expression in python
=RtGet("IDN","0001DIVCF.HK","ROW80_13")
For a deeper look into our Eikon Data API, look into:
Overview | Quickstart | Documentation | Downloads | Tutorials | Articles
Would like to replicate the below eikon excel api expression in python
=RtGet("IDN","0001DIVCF.HK","ROW80_13")
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 '