I am using the Dex2 sample (CSharpEikonnect). I have Eikon desktop version 4.0.36 running and no problems with steps 1 to 4 (Connecting to Eikon, Creating Dex2 Manager, Creating RData request…). In step 4 Request the Data does not work properly. What other commands I could use? I had a look at the Data Item Browser, but none of the commands there does return any results. Am I missing something? What I would like to do is to replicate the following:
privatevoid CreateRData(string InstrumentIDList,
string FieldList,
string RequestParam,
string DisplayParam)
{
// Create a RData
MyRData = MyDex2Mgr.CreateRData(MyDex2Cookie);
MyRData.OnUpdate += OnUpdate;
// Initialize the RData to request
if (MyRData != null)
{
MyRData.InstrumentIDList = InstrumentIDList; // “AAPL.O”
MyRData.FieldList = FieldList; // “TR.CLOSE” or “CF_CLOSE” or “CF_LAST”
MyRData.RequestParam = RequestParam; // “edate: -20d sdate: -9d”
MyRData.DisplayParam = DisplayParam; // “RH:In CH:Fd”
}
}
Thank you.