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

R connection problem, private network situation, what port to use, what does IT need to open?

eikoneikon-data-apipythonrefinitiv-dataplatform-eikonworkspaceworkspace-data-apieikon-data-api-r
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
Upvotes
Accepted
10.3k 18 6 9

@hanspeter.bornhauser

You need to open port 9000: - please find test code below including the set_proxy_port function (must include the L at the end eg 9000L). This should work. Let me know how you get on. This is for windows operating system - if you are using the standalone mac proxy use port 36036.

library(devtools)


install_github("ahmedmohamedali/eikonapir")


library(eikonapir)


eikonapir::set_proxy_port(9000L)


eikonapir::set_app_id('Your App Key Here')


result <- get_symbology(list("MSFT.O",
"GOOG.O", "IBM.N"),"RIC",list("ISIN"),raw_ouput
= FALSE,debug=FALSE)


print(result)
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.