Hi,
I am trying to get the index constituents and their weights for .xu030 (BIST30 Index)
I already have the following code to get the index constituents and their weight for a single date:
df_constituents, err = ek.get_data(#0.xu030, "TR.IndexConstituentWeightPercent",{'Sdate':'2019-10-01})
This works fine for 2019-10-01.
However, I am trying to get all index constituents and weights for,
start date: 2019-10-01, end date: 2019-11-04
Ideally, I'd like to get all index constituents and their weights in 1 pandas dataframe, if I can.
Thank you in advance.