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
11 1 1 6

How to get fund issue date via Eikon API?

I want to get the fund issue date via Eikon API, but it returns empty, kindly help check if the field "ISSUE_DATE" is correct or not? Thanks.


data, err = ek.get_data(instruments=['LP68728214'], fields=[
"TR.RICCode",
"ISSUE_DATE"
])

Response:

{

"instrument": {

"0": "LP68728214"

},

"ricCode": {

"0": "LP68728214"

},

"issueDate": {

"0": null

}

}


1686037714234.png


#contentfundsdateissue
1686037714234.png (108.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.

1 Answer

· Write an Answer
Upvote
Accepted
80k 257 52 75

@anchu

Thanks for reaching out to us.

You can use the TR.FundLaunchDate field.

df, err = ek.get_data(["LP68728214"],["TR.FundLaunchDate"])
df

The output is:

1686039219066.png

You can use the Data Item Browser to search for available fields, and parameters.

I hope that this information is of help.


1686039219066.png (8.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.

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.