question

Upvotes
Accepted
1 0 0 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 5.0 MiB each and 10.0 MiB total.

1 Answer

Upvotes
Accepted
23k 22 9 14

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 5.0 MiB each and 10.0 MiB total.

Click below to post an Idea Post Idea