I am trying to do queries for dividends in C# using the Eikon Data API. I notice that if I supply exact dates, such as today through the end of the year:
sdate: 2023-05-27
edate: 2023-12-31
I get back empty results.
However, if I supply relative dates, they sometimes seem to work, such as:
sdate: 1D
edate: -1AY
My questions:
1) Why do absolute dates fail for dividend queries with the Eikon Data API?
2) Where can I find a listing of the various formats for relative dates, such as 1W,1Y etc...?
3) Is there any guidance for proper usage of dates, such as which should come first, which ones are better suited for dividend queries, etc?
For example, the fields I am querying are like:
"TR.TickerSymbol",
"TR.DivEventStatus",
"TR.DividendFrequency",
"TR.DivExDate",
"TR.DivPayDate",
"TR.DivRecordDate",
"TR.DivAnnouncementDate",
"TR.DivType",
"TR.DivPaymentType",
"TR.DivUnadjustedNet",
"TR.DivUnadjustedGross",
"TR.DivOriginalCurr"
Thanks.