...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é