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

[Python Eikon API]How retrieve net change data?

I am looking for a way to retrieve net change data with get_data function.

I would like the same result as the following Eikon excel formula.

=TR("7203.T","NET_CHG(TR.CLOSEPRICE(Frq=D SDate=0D), lag=-1D)","Frq=D SDate=0D CH=Fd RH=IN",E36)

Is it possible to retrieve the data?

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.

1 Answer

· Write an Answer
Upvotes
Accepted
4.6k 26 7 22

@yuriko.ota

import eikon as tr
df, e = tr.get_data(['7203.T'], ['NET_CHG(TR.Close(0d),TR.Close(-1d))'], {'Lag':'1d', 'Frq':'D'})
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.

Zhenya, Thank you very much!!

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.