i have a strategy to send mail hoursly and report indicators if necessary.
https://www.dukascopy.com/wiki/#Send_e-mailit works but often prompt the informations:
09:59:43 Strategy thread queue overloaded with tasks. Ticks in queue - 3, bars - 3298, other tasks - 867
i search in dukas forum and trace the log,reason is the strategy thread is blocked by the send function.
so i try to use asynchronous task to resolve,both of Asynchronous execution/Scheduled asynchronous execution will block the strategy(onTick not called).
https://www.dukascopy.com/wiki/#Threadingdoes the send mail function be able to run asynchronously?(do not block the main onTick function)
thanks in advance.