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

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials

question

Upvotes
Accepted
5 1 3 5

Block Trades fields in DataScope only available for certain Exchanges?

Hi,

I am trying to retrieve any of the "Block ..." fields in DataScope, from the CompositeExtractionRequest

But I seem to only get nulls returned, and a zero for "Block Trades Grade", for any stocks on the Australian ASX

If I run for other large stocks though, like Amazon or IBM, I do get non-null values returned

My question is, should I see the nulls returned for ASX stocks as being zero, or that DataScope does not have any of these values?

I've put my Postman script below, any help would be appreciated, thanks


{
    "ExtractionRequest": {
        "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.CompositeExtractionRequest",
        "ContentFieldNames": [
            "Block Trades",
            "Block Trades Grade",
            "Block Volume"
        ],
        "IdentifierList": {
            "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
            "InstrumentIdentifiers": [  
                  { "Identifier": "IBM.N", "IdentifierType": "Ric" },
                { "Identifier": "AMZN.O", "IdentifierType": "Ric" },
                { "Identifier": "BHP.AX", "IdentifierType": "Ric" }, 
                { "Identifier": "ANZ.AX", "IdentifierType": "Ric" }, 
                { "Identifier": "WOW.AX", "IdentifierType": "Ric" }     
            ]
        }
    }
}
dss-rest-apidatascope-selectdss
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 @Pocari Sweat

Thank you for your participation in the forum. Is the reply below satisfactory in resolving your query?


If so please can you click the 'Accept' text next to the appropriate reply? This will guide all community members who have a similar 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
78.8k 250 52 74

@Pocari Sweat

Yes, you are correct. It returns 0 and null for ASX stocks.

        {
            "IdentifierType": "Ric",
            "Identifier": "BHP.AX",
            "Block Trades": null,
            "Block Trades Grade": 0,
            "Block Volume": null
        },
        {
            "IdentifierType": "Ric",
            "Identifier": "ANZ.AX",
            "Block Trades": null,
            "Block Trades Grade": 0,
            "Block Volume": null
        },
        {
            "IdentifierType": "Ric",
            "Identifier": "WOW.AX",
            "Block Trades": null,
            "Block Trades Grade": 0,
            "Block Volume": null
        }

To verify the content, please directly contact the Refinitiv DataScope Select team via MyRefinitiv to verify the problem.

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.

should I see the nulls returned for ASX stocks as being zero, or that DataScope does not have any of these values?

@Pocari Sweat

I am unable to confirm it. Please directly contact the Refinitiv DataScope Select team to verify it.

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.