For a deeper look into our Eikon Data API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
1 1 1 1

not existing symbol for "EUR=" when using symbology api .net

When I try to use symbology api like the following:

service = DataServices.Instance.ReferenceData;

service.ServiceInformationChanged += OnServiceInformationChanged;

service.RequestSymbols("EUR=", SymbolType.Ric, SymbolType.Cusip, OnSymbolsRicResponse);


i get a "non existent ric" response message while i can subscribe to "eur=" data stream so meaning that the ric is valid.

is that correct? actually i was attempting to use that as an alternative way to test ric existence with respect to subcribe the datastream, but it looks like it is not a good way .

eikoneikon-data-apiworkspaceworkspace-data-apirefinitiv-dataplatform-eikonpythonsymbology
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 5.0 MiB each and 10.0 MiB total.

Upvotes
18k 21 12 20

Hi @alessandro.bardine

Yes, it is correct.

I tested the API and received "Unknown symbol" from Symbology API call.



ahs.jpg (108.9 KiB)
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 5.0 MiB each and 10.0 MiB total.

Upvotes
141 2 0 1

Hi @alessandro.bardine


This is now possible in discovery/symbology/v1 using a query like this:

{

"from": [

{

"identifierTypes": [

"RIC"

],

"values": [

"EUR="

]

}

],

"to": [

{

"identifierTypes": [

"PermID"

]

}

],

"type": "strict"

}


If the RIC is not valid you will get an error: "message": "Input values do not exist"


Rgds

Rob




icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 5.0 MiB each and 10.0 MiB total.

Click below to post an Idea Post Idea