How can I obtain historical Reuters poll (i.e. forecast) for an economic indicator using Eikon Python API?
For example, for this RIC "USADP=ECI", I know how to obtain historical time series like this:
eikon.get_timeseries("USADP=ECI", start_date="2010-01-01", interval="monthly")
I also know I can get some present data like this:
ek.get_data("USADP=ECI", fields=["ECON_PRIOR", "ECON_SRCE"])
However, these fields mostly return NaN: "ECON_ACT", "ECON_DES", "ECON_FCAST", "ECON_HIST", "ECON_REV", "FCAST_HIGH", "FCAST_LOW", "FCAST_NUM"
The question is, how do I get historical Reuters poll values (forecast values) in a time series? Apparently get_timeseries() does not support any field other than 'TIMESTAMP', 'VALUE', 'VOLUME', 'HIGH', 'LOW', 'OPEN', 'CLOSE', 'COUNT'; and get_data() does not return historical data.
I think this data is present in Eikon though, since some chart about a RIC can plot historical poll, and Excel plugin is able to retrieve historical poll.
Please help! Thanks!