Hi ,
I am trying to retrieve history for COIRTARGET. I have tried this to methods but they didn't work.
TASA_BANREP = rdp.get_historical_price_summaries(universe = 'COIRTARGET=',
start = start_date,
end = end_date,
interval = rdp.Intervals.DAILY,
fields = ['MID_PRICE'])
start_date = "2000-12-12"
end_date = "2021-03-24"
TASA_BANREP= ['COIRTARGET=']
ts,e = ek.get_data(TASA_BANREP,
["TR.MIDPRICE.date","TR.MIDPRICE"],
{'SDate':start_date,'EDate':end_date,'Frq':'D'})
Please note that I am not using get_timeseries since I need a long history.
Any help is appreciated.
Thanks!