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

Eikon Python API

in the function get_timeseries, the parameter 'calendar' which one is the calendar with all working days? I mean all days from monday to friday I have other doubts about the adjustment for futures and for equities

In Equity , is there any Price adjustment for corporate event?




eikoneikon-data-apipythonrefinitiv-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.

Upvotes
Accepted
32.2k 40 11 19

Hello @RizalieJean.Manayon,

Looking at Refinitiv EDAPI Reference Guide, I think you are looking for "tradingdays ":

On the second question, believe you can select if you would like to adjust for corporate actions (corax)

Hope this helps


tradingdays.gif (115.4 KiB)
adjust.gif (113.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
39.4k 77 11 27

The value of the calendar kwarg in get_timeseries method only affects requests for intraday timeseries, where it controls whether pre and post market trades are included in the response. The value of the calendar kwarg has no effect on interday timeseries requests. To get daily timeseries that fill all weekdays including market holidays you'd need to utilize pandas capabilities to fill the gaps in the timeseries returned by get_timeseries method.
Refinitiv adjusts stock price timeseries for corporate actions such as stock splits. The list of events resulting in the adjustment of stock price history varies by market. In most markets including the US by convention stock price history is not adjusted for regular cash dividends. However in Brazil the convention is to adjust stock price history for most cash dividends. To retrieve unadjusted stock price history, use corax = 'unadjusted' kwarg in get_timeseries method.

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.