I am using Python Eikon API.
The API returns the error message: Unable to collect data for the field 'TR.ACCUMULATEDVOLUME' and some specific identifier(s)
for Eurodollar Spread futures, e.g. RIC = EDM1-H2. This should return 2741 for date 31/03/2021. Problem is not limited to this ric only, all spread and fly rics are affected.
It seems to work fine for double fly Eurodollar Rics, e.g. EDDFH3-U24.
Code I am using:
import eikon
eikon.get_data(['EDM1-H2'],['TR.ACCUMULATEDVOLUME', 'TR.ACCUMULATEDVOLUME.DATE'],{'SDate': '2021-03-25', 'EDate': '2021-03-30', 'Frq': 'D'})
and
eikon.get_data(['EDDFH3-U24'],['TR.ACCUMULATEDVOLUME', 'TR.ACCUMULATEDVOLUME.DATE'],{'SDate': '2021-03-25', 'EDate': '2021-03-30', 'Frq': 'D'})