I would like to get historical price, open interest and volume from Eurex futures, however, ek.get_timeseries() is not working and e.get_data() gives me only the values of the day, altough I have specified sdate and edate:
df, err = ek.get_data('VOWG_p2Q1',
['CF_DATE', 'CF_CLOSE','SETTLE'],
{'SDate': 0, 'EDate': -15, 'Frq':'D' })
How can I retrieve the data?