As I know, I can query the dirty price of historical bond via RD API.
I want to know if I can query the next pay date(下一付息日) of historical bond via Eikon or RD API?
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
As I know, I can query the dirty price of historical bond via RD API.
I want to know if I can query the next pay date(下一付息日) of historical bond via Eikon or RD API?
Hi @anchu ,
Thanks for reaching out to us.
You can use the TR.FiNextPayDate field.
df, err = ek.get_data(["CN230004="],["TR.FiNextPayDate"]) df
The output is:
You can use the Data Item Browser to search for available fields, and parameters.
I hope that this information is of help.