Hi all,
Can someone help me with those requests which returns duplicated datapoints ?
Request 1
import refinitiv.data as rd
rd.open_session()
res = rd.get_history(universe=["ESH2^2"], fields=["TR.CLOSEPRICE"], parameters={ "SDate": "2020-12-18", "EDate": "2023-03-18"}, use_field_names_in_headers=True)
Response
The last datapoint is duplicated several times
Request 2
import refinitiv.data as rd
rd.open_session()
test = rd.get_history(universe="SRAK3",
fields=["TR.CLOSEPRICE","TR.SETTLEMENTPRICE","TR.OPENINTEREST","TR.HIGHPRICE","TR.LOWPRICE","TR.ACCUMULATEDVOLUME"],
parameters={"SDate": "2023-02-03", "EDate": "2023-08-25"},
use_field_names_in_headers=True)
Response
Inspecting by hand it shows that one line has the full information, where the ‘duplicated’ one have some missing field (and is not necessary the last line with that date, eg the 6th of march)