@"Mike"#p3552 Thanks Mike, downloaded and build it successfully! I noticed some differences between the two code bases (VS2019 vs VS 2022).
For example in VS2022 you handle the SendAlerts exceptions by simply printing the exception in the log (e.g. Print(ex.Message)) . In VS2019 you use MessageBox.Show method to show exceptions in a popup window. That's not very good practice as the program stops and waits for an input on the MessageBox in order to continue.
That's fine, no biggie, but my question is, in the name of code efficiency, and this applies to both code bases, why you use System.Windows.Forms.MessageBox when you can use native cAlgo.API.MessageBox?
With System.Windows.Forms.MessageBox:
Simple and efficient coding with cAlgo.API.MessageBox, no need for Windows Forms library:
Cheers,
Gabriel