Upgrade from Eikon -> Workspace. Learn about programming differences.

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

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
1 1 2 2

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-apipythonrefinitiv-dataplatform-eikonworkspaceworkspace-data-apisymbology
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 @alessandro.bardine

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

If yes, please click the 'Accept' text next to the reply. This will guide all community members who have a similar question. Otherwise please post again offering further insight into your question.

Thanks,

AHS

Hi @alessandro.bardine,

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

Hello @alessandro.bardine,

Thank you for your participation in the forum.

Is the reply below satisfactory in resolving your query? If yes please click the 'Accept' text next to the reply. This will guide all community members who have a similar question. Otherwise please post again offering further insight into your question.

Thanks,

-AHS

Hello @alessandro.bardine

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

If yes, please click the 'Accept' text next to the reply. This will guide all community members who have a similar question. Otherwise please post again offering further insight into your question.

Thanks,

AHS

@alessandro.bardine

Hi,

Please be informed that a reply has been verified as correct in answering the question, and has been marked as such.

Thanks,

AHS

Upvotes
18.2k 21 13 21

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 512.0 KiB each and 1.0 MiB total.

Upvotes
261 2 0 2

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