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

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials

question

Upvotes
Accepted
5 2 3 5

Using DataScope, or DataStream Web, how to retrieve the Short Interest value, or Short Position, for an ASX stock?

Using DataScope, or DataStream Web, can anyone help us retrieve the Short Interest value, or Short Position, for a stock on the Australian ASX?

We cannot use Eikon (or the Python eikon library)


For example, to retrieve the Volume of Shorts for BHP.AX using the Python Eikon library, I can use the following line:

ek.get_timeseries(['BHPss.AX'])


Or, using Eikon itself, in the Monitor for BHP.AX, under "Price & Charts" there is a "Short Interest" option


Or, using DataScope, I can use the following Postman request to get the Short Interest for an over-the-counter stock:

{
"ExtractionRequest": {
"@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.CompositeExtractionRequest",
"ContentFieldNames": [
"Short Interest",
"Short Interest Date"
],
"IdentifierList": {
"@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
"InstrumentIdentifiers": [
{ "Identifier": "ADMLF.PK", "IdentifierType": "Ric" }
]
}
}
}


But, is there any way to get the data for ASX stocks, using DataScope, or DataStream Web?

This data is published regularly at https://asic.gov.au/regulatory-resources/markets/short-selling/short-position-reports-table/ , so I don't think there would be any licensing concerns.

Many thanks,

André

dss-rest-apidatascope-selectdssdatastream-api
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
Upvotes
Accepted
83.1k 281 53 77

@Pocari Sweat

For the DataStream, I found the description of the Short Interest field.

From this information, it is not available for ASX stocks. However, you may contact the Refinitiv Datastream team via MyRefinitiv to confirm it.

For the DataScope Select, it returns null for ASX stocks.

        {
            "IdentifierType": "Ric",
            "Identifier": "BHP.AX",
            "Short Interest": null,
            "Short Interest Date": null
        }

The data may not be available in the DataScope Select. Please directly contact the Refinitiv DataScope Select team via MyRefinitiv to verify it.


1614139788303.png (32.1 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.

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.