I am trying to get the historical closing price for *=RRPS (e.g. AT0000A1K9C8=RRPS, BE352=RRPS)
df_r,e = ek.get_data(' BE291=RRPS' ,['TR.PriceClose'],
{'SDate':'2022-01-01','EDate':'2022-06-30','Frq':'D'})
CF_CLOSE doesn't work for historical prices
I tried ek.get_timeseries but it returned the close yield.
df = ek.get_timeseries([ 'BE352=RRPS' ] ,fields="CLOSE" , start_date = '2022-01-01', end_date = '2022-06-30')