For a deeper look into our DataScope Select REST API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials

question

Upvotes
Accepted
25 3 4 8

How can I find the "adjusted price history"?

Hi

Is there an endpoint in the DataScope API which would allow me to get the adjusted price history corresponding to the prices in the screenshot below?

Thanks in advance for your help,

Benoit

dss-rest-apidatascope-selectdssdata
adjusted-prices.jpg (55.3 KiB)
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.

1 Answer

· Write an Answer
Upvote
Accepted
11.3k 25 9 14

@bilou_12

It could be Price History report template. The template has an "Adjusted Prices" option to retrieve historical prices adjusted from corporate actions and currency redenominations..

For On Demand extraction, the PriceHistoryExtractionRequest provides the same options, "AdjustedPrices". For more details, please see REST API Reference Tree.

Below is the sample of request.

POST https://hosted.datascopeapi.reuters.com/RestApi/v1/Extractions/ExtractWithNotes
{
    "ExtractionRequest": {
        "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.PriceHistoryExtractionRequest",
        "ContentFieldNames": [
            "Trade Date",
            "Currency Code",            
            "Accumulated Volume Unscaled",
            "Ask Price",
            "Bid Price"
        ],
        "IdentifierList": {
            "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
            "InstrumentIdentifiers": [
                {
                    "Identifier": "XLE",
                    "IdentifierType": "Ric"
                }
            ],
            "ValidationOptions": null,
            "UseUserPreferencesForValidationOptions": true
        },
        "Condition": {
            "AdjustedPrices": true,
            "QueryStartDate": "2019-08-23T00:00:00.000Z",
            "QueryEndDate": "2019-08-30T00:00:00.000Z"
        }
    }
}

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, that was helpful !

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.