I am extracting intraday trading prices for FB.OQ and META.OQ from 2022-01-01 to 2022-07-01, but can only get META.OQ data after 2020-06-09. I pasted my JSON script below
{
"ExtractionRequest": {
"@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.TickHistoryTimeAndSalesExtractionRequest",
"ContentFieldNames": [
"Trade - Price","Trade - Volume"],
"IdentifierList": {
"@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
"InstrumentIdentifiers": [
{"Identifier": "META.OQ", "IdentifierType": "Ric"},
{"Identifier": "FB.OQ", "IdentifierType": "Ric"}
],
"UseUserPreferencesForValidationOptions" : "False"
},
"Condition": {
"MessageTimeStampIn": "LocalExchangeTime",
"DateRangeTimeZone": "Local Exchange Time Zone",
"ReportDateRangeType": "Range",
"QueryStartDate": "2022-01-01T09:30:00.000Z",
"QueryEndDate": "2022-07-01T16:00:00.000Z",
"DisplaySourceRIC": "True",
"TimeRangeMode": "Window"
}
}
}
Thanks for your guys' help, if you have some advice to solve this.