Hi
I downloaded all examples at this site for Reuters EIKON API for .NET. but none
of them works. I tried it at work ( where we have proxy ) and at home ( no proxy ), I also tried with default versions of packages and later updated to latest versions. Still nothing.
An event handler ServicesOnStateChanged is never hit. All I see is black console on simply nothing.
private static void InitializeDataServices(string appName)
{
Services = DataServices.Instance;
Services.StateChanged += ServicesOnStateChanged;
Services.Initialize(appName);
Console.WriteLine("Data service is initialized? : {0}", Services.IsInitialized);
// TRUE - it is Initialized
InitializeTimeseries();
}
private static void ServicesOnStateChanged(object sender, DataServicesStateChangedEventArgs dataServicesStateChangedEventArgs)
{
// Never hit ((
Console.WriteLine("State changed: " + dataServicesStateChangedEventArgs.State.ToString());
}
I would like to dare to ask one basic question: I near future, I will have to develop some basic application to store list if RICS and some additional data several times a day. These data are Channel,RIC-name,Bid,Ask,ValueData,ValueTimestamp. For example Channel="IDN" , RIC-name="AUD1B3B20Y=ICAP" .
Am I going to use proper API = Eikon API for it? ( I'm just developer, not business user )
Thank you
Martin