question

Upvotes
Accepted
9 1 3 7

How to get data at tick level?

Which parameter should be set to get data at exactly "tick" level, and not at the intervals mentioned in

TickHistorySummaryInterval

?


tick-history-rest-apitick-data
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvote
Accepted
21.8k 57 14 21

Hi @memam,

If you are interested in getting all the tick data, then please use the Raw extraction request -

DataScope.Select.Api.Extractions.ExtractionRequests.TickHistoryRawExtractionRequest

and not the Intraday summary extraction request.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Thanks. When I use TickHistoryRawExtractionRequest, I get too much redundant information as opposed to TickHistoryIntradaySummariesExtractionRequest.

Is there any way to get the resulting csv file from TickHistoryRawExtractionRequest, automatically organised with only the following fields (columns)?

"#RIC",
"Alias Underlying RIC",
"Domain",
"GMT Offset",
"Type",
"Bid Price",
"Ask Price",
"Exch Time",
"Date"
No, its not possible to specify the filter in request, but is easy to post-process this data in your application. Tickhistory Raw request will provide you with all the tick level data as was disseminated by the listing venue.
Upvote
32.2k 40 11 19

Hello @memam ,

You may filter the fields that you require in TickHistoryRawExtractionRequest:

{
  "ExtractionRequest": {
    "@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.TickHistoryRawExtractionRequest",
    "IdentifierList": {
      "@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",  
      "InstrumentIdentifiers": [{
        "Identifier": "IBM.N",
        "IdentifierType": "Ric"
      }]
    },
    "Condition": {
      "MessageTimeStampIn": "GmtUtc",
      "ReportDateRangeType": "Range",
      "QueryStartDate": "2021-09-28T12:00:00.000Z",
      "QueryEndDate": "2021-09-29T12:10:00.000Z",
      "ExtractBy": "Ric",
      "SortBy": "SingleByRic",
      "DomainCode": "MarketPrice",
      "DisplaySourceRIC": true,
      "FidListOperator": "OR",
       "Fids": "2,3,22,25"
    }
  }
}

FID is field ID, the number that uniquely identifies the field.

If you have had a chance to run the extraction request suggested by @Gurpreet , and you see the FIDs of the fields that are of interest to you in the extraction result, these are the FIDs to be specified into the Fids filter.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.