In Account.PositionUpdate , I am initiating separate thread with below code to monitor the SL and PT orders. The Async thread it not starting immediately, it is taking almost 30seconds to span. How to span async thread immediately ?
ChartControl.Dispatcher.InvokeAsync(new Action(() => {
// monitoring code
} ));

Comment