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

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials

question

Upvotes
Accepted
6 4 2 7

Strange RIC from EquitySearch

Hi,

I'm executing an EquitySearch API call, with an ISIN : CH0011075394, and specifying the market SWX. I obtain a RIC like this one: ZURZn.S^D99

That seems to be wrong, since it does not return with further calls in HistoricalData and it is not returned from the DataScope web application. What am I doing wrong?

Parameter of the EquitySearch are:

Identifier = CH0011075394;

 IdentifierType = IdentifierTypes.Isin;

ExchangeCodes = GetExchanges("SWX");

PreferredIdentifierType = IdentifierType.Ric;

dss-rest-apidatascope-selectdssricsisin
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
13.7k 26 8 12

@felice.pollano

The syntax including a "^" indicates a delisted RIC. The original RIC is before the "^", so in this case it is ZURZn.S, which delivers results in a historical search:

Delisting can be due to various reasons. In this particular case it is due to a (series of) name changes, because ZURZn.S became ZURZn.VX, then ZURN.VX and is now ZURN.S !

Added later after further investigation:

In the equity search results the current RIC ZURN.S is not under SWX but under VTX. Same in the DSS GUI, same inside Eikon. Strange, it looks like all blue chips are under VTX, whereas other instruments are under SWX (like ALLN.S, ISIN CH0008837566).

Added yet later after more investigation:

Blue chips initially moved from SWX to VTX. When the blue chips quoted on VTX returned to SWX it was decided not to change the exchange for the blue chips, in order to distinguish the Blue Chip RICs.

As you forced the search to deliver SWX results it delivered the most recent one for SWX which was the very old delisted RIC (hence the strange syntax), from the time before the move to VTX.

If you search using exchange VTX it delivers the most recent one for VTX, which is the current RIC.

In case you want some context: SWX fact sheet

To make it easy:

Filter on exchanges SWX and VTX, and add a criteria to deliver only current instruments:

"AssetStatus": "Active",

Full request in Postman:

{
    "SearchRequest": {
        "AssetStatus": "Active",
        "AssetCategoryCodes": null,
        "SubTypeCodes": null,
        "CurrencyCodes": null,
        "CompanyName": null,
        "Description": null,
        "DomicileCodes": null,
        "ExchangeCodes": [
            "SWX", "VTX"
        ],
        "FairValueIndicator": null,
        "FileCodes": null,
        "GicsCodes": null,
        "OrgId": null,
        "Ticker": null,
        "Identifier": "CH0011075394",
        "IdentifierType": "Isin",
        "PreferredIdentifierType": "Ric"
    }
}

zurzns.png (87.7 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.

@felice.pollano

I added a solution in the form of a Postman example, after you accepted my initial response. Hope you will find this useful.

@ChristiaanMeihsl Thanks for yout effort, yes this is an improvement on the way we create requests, thank you.

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.