I am interested in getting the entire history of an instrument.
What is the best way to do that outside of using startDate and EndDate?
Is there a condition clause available to select entire history?
Also is there an easy to view all the relevant search conditions?
requestBody={
"ExtractionRequest": {
"@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.TimeSeriesExtractionRequest",
"ContentFieldNames": [
"File Code",
"RIC",
"Trade Date",
"Close Price",
"High Price",
"Low Price",
"Open Price",
"Volume",
"Bid Price",
],
"IdentifierList": {
"@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
"InstrumentIdentifiers": [{
"Identifier": "CZ8",
"IdentifierType": "Ric"
}]
},
"Condition": {
"LastPriceOnly": False,
"StartDate": "2017-05-24T00:00:00.000Z",
"EndDate": "2017-05-31T00:00:00.000Z"
}
}
}