I am using the C# Eikon Data API to find events in the future on which a company is expected to split. This is working for some fields, however other fields are always blank. Specifically, any field that shows what type the event is, is always blank. In the simple query example below, the first four fields are returned with valid values in them, however the last field, TR.CACorpActEventType, is always empty. I need to know how to cause Eikon to properly return a value in that field. For reference, when I look at the field in the Data Item Browser, it shows “Share Split”, so I know the value exists, but it's not being returned to me.
Also, if I may add a second question: What would be the proper value for the "Frq" argument to pass when querying for corporate events?
Thank you.
var args = new Dictionary<string, string>
{
{ "SDate", "2023-03-08" },
{ "EDate", "2024-12-31" },
{ "Frq", "Q" }
};
var json = eikon.GetDataRaw(
"IVOG.K,IVOO.K",
new List<string>
{
"TR.TickerSymbol",
"TR.AdjmtFactorAdjustmentDate",
"TR.AdjmtFactorAdjustmentFactor",
"TR.AdjmtFactorIsApplied",
"TR.CACorpActEventType"
},
args);