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

How to fetch real-time candle data for intraday periods in EIkon Data API

  • How to fetch real-time candle data for intraday periods
  • What is the resolution for the lag that arises while fetching data using the get_timeseries API
  • 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?
  • There are some RICs (illiquid ones mostly) whose hourly data is returned but daily isn't. Is that a bug? Because if an hourly candle is forming then so should daily.
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.

Hello @neha.bhan ,

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 appropriate reply. This will guide all community members who have a similar question. Otherwise please post again offering further insight into your question.

Thanks,

-AHS

@neha.bhan

Hi,

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

Thanks,

AHS

1 Answer

· Write an Answer
Upvotes
Accepted
14.2k 30 5 10

Hi @neha.bhan,

  1. Assuming you want minute data for intraday data, you may follow the code below. (interval for intraday can be minute or hour)
    1628842092334.png
  2. I tried fetching data using get_timeseries() and found no lag compared to Quote data. Please see the screenshot below, the API was called at 7:13AM (UTC time) and the latest data returned from get_timeseries() is the same time as trade time (TRDTIM_1) in Quote.
    For the lag that occurred,
    - you may check if the user has real-time permission on that RIC
    - or it could be that there's no trading occurred during that time.
    13aug2021-2.jpg
  3. 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

    import eikon as ek ek.set_app_key("xxxxxxxxxxxxxxxxxxxxxxxxxxx") 
    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"]) macd_rsi

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

  4. Could you please provide the RICs whose hourly data is returned but daily isn't so we can help check test the data availability, or you may contact the Content team and provide these RICs to them to check.
    To do so,
    1. You can submit a case at https://my.refinitiv.com/content/mytr/en/helpandsupport.html
    2. then select Product and Content >> I believe content is incorrect or incomplete >> Refinitiv Eikon



1628842092334.png (138.6 KiB)
13aug2021-2.jpg (87.7 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.

Eikon Data Item Browser

1628842645440.png

1628842645440.png (439.3 KiB)

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.