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

TR.CombinedAlphaRegionRank timesries query not working

Hey,

Trying to pull the TR.CombinedAlphaRegionRank timeseries for a stock but getting nan values. Im using the following

ek.get_timeseries('MAP.MC', ['TR.CombinedAlphaSectorRank'], start_date = "2018-01-01", end_date = "2019-11-01")


any help is appreciated


Thanks,

Marco

eikoneikon-data-apipythonrefinitiv-dataplatform-eikonworkspaceworkspace-data-apitime-series
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.

@marco.botero

Thank you for your participation in the forum. Are any of the replies below satisfactory in resolving your query? If yes please click the 'Accept' text next to the reply that best answers your question. This will guide all community members who have a similar question. Otherwise please post again offering further insight into your question.

Thanks,

-AHS

Upvotes
Accepted
39.4k 77 11 27

The right method to request this field is get_data, not get_timeseries. Try

ek.get_data('MAP.MC', 
            ['TR.CombinedAlphaSectorRank.date',
             'TR.CombinedAlphaSectorRank'], 
            {'SDate':'2018-01-01', 'EDate':'2019-11-01'})
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
1 0 0 1

This is using the python 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.

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.