Dispose()
Previous Topic  Next Topic 

Definition
For advanced programmers: You can override the Dispose() method to clean up all resources owned by the custom indicator or strategy. It is critical that you call the base.Dispose() method when overriding the Dispose() method.


Method Of

Custom Indicator, Custom Strategy

Examples

public override void Dispose()
{
    // Clean up your resources here
    base.Dispose();
}