I would like to get daily closing price for multiple stocks using eikon API and display them into a data frame python
Check out the discussion on this previous thread.
This is only for one stock. I want the same thing but for multiple stocks
@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'})