Open
Description
Hi,
Even if I use the default DXFeed method, my event listener never gets called back. What could be the reason?
var subscription= DXFeed.GetInstance().CreateSubscription(typeof(Quote));
subscription.AddEventListener(events =>
{
foreach (var e in events)
{
Console.WriteLine(e);
}
});
subscription.AddSymbols("AAPL");
I have a breakpoint inside the Event listener and the breakpoint never gets triggered.