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

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
1 0 0 3

How to get 'CF_LAST', 'DIVIDEND', 'TR.IVIntrinsicValue' fields for ALL Equity Symbols?

eikoneikon-data-apiworkspaceworkspace-data-apirefinitiv-dataplatform-eikonchain-ric
ref-eq-ric.jpg (84.8 KiB)
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
6.7k 8 6 7

@anbezhilasokan.frm So this is a two step operation as the chain is not being resolved directly in the get_data function that contains non-realtime fields. Pls try:

df, err = ek.get_data(['0#A.NS'],'CF_NAME')
df

this chain is resolved with only realtime fields. You can then use the instrument column in the second API call:

df1,err = ek.get_data(df['Instrument'].tolist(),['CF_LAST','DIVIDEND','TR.IVIntrinsicValue'])
df1

I hope this can help.


1622217355270.png (60.9 KiB)
1622217514317.png (84.3 KiB)
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