Hi,
i've got an issue downloading historic data for economic indicators. my code is this:
df = rd.get_history(
universe=['aUSSPDIVY'],
interval="monthly",
start="1924-03-01"
)
print(df)
aUSSPDIVY VALUE
Date
2022-05-31 1.567599
2022-06-30 1.641982
2022-07-31 1.64768
2022-08-31 1.560287
2022-09-30 1.69635
2022-10-31 1.767346
2022-11-30 1.694609
2022-12-31 1.710467
2023-01-31 1.700476
2023-02-28 1.661403
2023-03-31 1.71876
2023-04-30 1.659037
2023-05-31 1.653171
2023-06-30 1.581222
2023-07-31 1.528613
2023-08-31 1.550517
2023-09-30 1.572049
2023-10-31 1.63122
2023-11-30 1.56889
2023-12-31 1.500596
which gives me history back to 2022-05-31.
however, i can clearly see in Eikon that history exists until 1871 (though chart only shows 1924):
what do i do wrong?
apart from the above issue, which btw. only responds with Date and Value, i thought, based on DIB for the item, i should be able to get back the following fields:
actually all of the fields, but for this issue i just focus on the two in the red box.
but when trying to query those:
df = rd.get_history(
universe=['USJOB=ECI'],
fields=["ECON_ACT", "ECON_PRIOR"],
interval="monthly",
start="1924-03-01"
)
print(df)
i am greeted with an error message:
RDError: Error code -1 | No data to return, please check errors: ERROR: No successful response.
(TSCC.Economics.UserRequestError.96104, The universe does not support the following fields: [ECON_ACT, ECON_PRIOR])
so, i clearly do something wrong again. can you please let me know what that is?
thanks,
Andreas