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

Zhenya, Thank you very much!!

Click below to post an Idea Post Idea