question

Upvotes
Accepted
1 0 1 1

Daily or weekly frequency market depth

I'd like to get daily or weekly market depth data, and unfortunately I'm not an expert in coding/programming. Is there a way to convert millisecond data on TRTH into a daily or weekly frequency?

tick-history-rest-apimarket-depth
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.

Hello @aa.alfarhoud,

Thank you for your participation in the forum.

Is the reply below satisfactory in resolving your query?

If yes, please click the 'Accept' text next to the appropriate reply. This will guide all community members who have a similar question. Otherwise please post again offering further insight into your question.

Thanks,

-AHS

Please be informed that a reply has been verified as correct in answering the question, and has been marked as such.
Thanks,
AHS

1 Answer

· Write an Answer
Upvotes
Accepted
32.2k 40 11 20

Hello @aa.alfarhoud,

I think you are looking for daily or End Of Day data from Tick History?

If that is the case, try ElektronTimeseriesExtractionRequest:

{ {protocol}}{ {host}}{ {api}}Extractions/ExtractRaw

{
  "ExtractionRequest": {
    "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.ElektronTimeseriesExtractionRequest",
    "ContentFieldNames": [
      "Instrument ID",
      "Open",
      "High",
      "Low",
      "Last",
      "Volume",
      "VWAP",
      "Number of Price Moves",
      "Trade Date"
    ],
    "IdentifierList": {
      "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
      "InstrumentIdentifiers": [
        {
          "Identifier": "CARR.PA",
          "IdentifierType": "Ric"
        }
      ]
    },
    "Condition": {
      "StartDate": "1996-01-01T00:00:00.000-00:00",
      "EndDate": "2016-11-01T00:00:00.000-00:00"
    }
  }
}

See REST API Tutorial 7: On Demand End of Day extraction for more details EOD,

and REST API Reference Tree for the complete spec of all available requests. Select the request from the dropdown list on the right, and the spec for that request will be reflected on the page.

Otherwise, please let us know more details on what you are looking to achieve?


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.