How can I get the Actual as well as the Poll data for 'USJOB=ECI' that comes every week? Though I tried it this way (code snippet attached below), I'm only getting the Actual data, and not the Poll data.
import refinitiv.data as rd
rd.open_session()
df=rd.get_history(
universe='USJOB=ECI',
start='2011-01-01',
end='2024-04-30'
)
I can download the data in excel file to get all the required columns (screenshot attached below) from the refinitiv app, but I want it to get updated automatically as it comes every week.