question

Upvotes
Accepted
75 1 2 7

How can I open an Eikon QuoteApp Window from Eikon Excel VBA for a source different than Q IDN Data?

With below small VBA code I can call a RIC from the IDN world:

Sub ShowRICInIDN(ByVal RIC As String)

Dim wshLink As Object
Set wshLink = CreateObject("WScript.Shell")
wshLink.Run "reuters://REALTIME/verb=FullQuote/ric=" & RIC
Set wshLink = Nothing
end sub

How can I open a EikonQuoteApp showing data from a different data source?


eikoneikon-com-apiexcelvbaquoterace-condition
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.

Upvote
Accepted
4.6k 26 7 22

reuters://REALTIME/verb=Quote Object/context=<Entity datasource="YOUR_FEED_NAME"><Identifier namespace="RIC">YOUR_RIC_NAME</Identifier></Entity>

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
75 1 2 7

Thank you very much Zhenya Kovalyov! It works fine.

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.