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

FreeFloat is Nan

I am using the following formula with python api :

df=ek.get_data(listRIC, ['TR.FreeFloatPct'], {'SDate':'0', 'EDate':'-0'})


Unfortunatly, until the 1st april the result is nan for all ric.

I check the same query on excel and it is still work.

Do you have any idea where the problem come from ?

eikoneikon-data-apipythonworkspacerefinitiv-dataplatform-eikonworkspace-data-apiequities
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
18.2k 21 13 21

Hi @matthieu.barrailler

The Eikon Excel and Eikon Data API provide the same information.


I think if you just want to retrieve the latest information, you can omit the SDate and EDate parameters.


ahs.png (75.2 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
10.8k 21 6 9

Hi @matthieu.barrailler Thanks for your question - the issue with your query is inclusion of the SDate and EDate parameters (particularly EDate -0) please omit these for the most recent actual figure - see code below:

df, err =ek.get_data('VOD.L', ['TR.FreeFloatPct'])
df

I hope this can help.


1585904073154.png (15.5 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
1 0 0 1

Thank you it works.


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.