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

Is it possible to extract data like RSI and MACD values for a product? If yes, what is the list of products it is possible for?

eikoneikon-data-apirefinitiv-dataplatform-eikonworkspaceworkspace-data-api
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
14.3k 30 5 10

Yes, it's possible to extract RSI and MACD values for a product, and they should be available for all products as they're the standard analysis fields.

below is an example to extract these values

                
  1. import eikon as ek ek.set_app_key("xxxxxxxxxxxxxxxxxxxxxxxxxxx")
  2. macd_rsi, err = ek.get_data(["FB.O","AMZN.O","AAPL.O","NFLX.O","GOOG.O"], ["TR.MovAvgCDLine1.date","TR.MovAvgCDLine1","TR.MovAvgCDLine2","TR.MovAvgCDSignal","TR.RSISimple14D","TR.RSIExp14D","TR.RSIWilder14D","TR.RSISimple30D","TR.RSIExp30D","TR.RSIWilder30D","TR.RSISimple9D","TR.RSIExp9D","TR.RSIWilder9D","TR.RSISimple3D","TR.RSIExp3D","TR.RSIWilder3D","RSI_14","RSI_30","RSI_7"])
  3. macd_rsi

To see each field's description, Eikon Data Item Browser can be used.

11635-1628842645440.png


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.