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

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
1 0 1 1

Get closing price from multiple stocks using Eikon API?

I would like to get daily closing price for multiple stocks using eikon API and display them into a data frame python

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.

Upvotes
Accepted
39.2k 75 11 27

Check out the discussion on this previous thread.

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.

This is only for one stock. I want the same thing but for multiple stocks

You can pass multiple instruments to the instruments argument of get_data method as a Python list.

instruments = ['AAPL.O', 'IBM.N', 'FB.O']

But the point is that you can use CodeCreator app in Eikon, which is very helpful in creating code samples for the retrieval of most all content available through Eikon Data APIs.

Upvote
9.7k 49 38 60

@maxwilliams.boko.

The example only shows one, but it is wrapped in a list. You can specify multiple stocks, comma-separated. For example:

df, err = ek.get_data(
    instruments = ['stock1', 'stock2', 'stock3'],
    fields = ['TR.CLOSEPRICE.Date','TR.CLOSEPRICE'],
    parameters = {'SDate':'2021-02-01','EDate':'2021-02-28','Curn':'USD'}
)
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