I have a question related to the BarRequest. At State Historical I am requesting a bars request.
I have created a method to download the bar series called RequestSeries().
Sometimes ( not every time ) I get an object not set to an instance of an object error.
I have included the method call inside a dispatcher. Could that be the source of my problem ?
ChartControl.Dispatcher.InvokeAsync((Action)(() =>
{
RequestSeries();
}}));
Should I call the method directly ?
Thank you !

Comment