Apparently Dispose() isn't being used in the same way on NT 6.5 as it was on NT 7...
Basically, in my live strategies, I create a FileSystemWatcher... so I can monitor one of my configuration files (and update parameters dynamically). Before, I over-rode the strategy's dispose() function.
Whenever I removed the strategy from the Strategies tab on 6.5, Dispose() is called, and I eliminate the FileSystemWatcher.
Now, when I remove the strategy from the strategies tab in 7.0... apparently Dispose() isn't being called. How do I get similar behavior? Is there some function that's called when a strategy is disabled or removed?

Comment