Will the response of PriceHistoryExtraction always return in sorted order (by RIC and trade date) as listed below.
I have posted sample payload of request/response below:
{
"ExtractionRequest": {
"@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.PriceHistoryExtractionRequest",
"ContentFieldNames": [
"RIC",
"Trade Date",
"Universal Close Price",
"Volume"
],
"IdentifierList": {
"@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
"InstrumentIdentifiers": [
{
"IdentifierType": "Ric",
"Identifier": "SPIB.K"
},
{
"IdentifierType": "Ric",
"Identifier": "SCHZ.K"
}
]
},
"Condition": {
"AdjustedPrices": false,
"QueryStartDate": "2019-03-07",
"QueryEndDate": "2019-03-08"
}
}
}
RIC,Trade Date,Universal Close Price
SPIB.K,2019/03/07,50
SPIB.K,2019/03/08,51
SCHZ.K,2019/03/07,52
SCHZ.K,2019/03/08,53