PlotsConfigurable
Previous Topic  Next Topic 

Definition

If true, any indicator plot(s) are configurable within the indicator dialog window


Property Value

This property returns true if any indicator plot(s) are configurable; otherwise, false. Default set to true.


Syntax

PlotsConfigurable


Examples

// Initialize method of a custom indicator
protected override void Initialize()
{
    Add(new Plot(Color.Orange, "SMA"));
    PlotsConfigurable = false; // Plots are not configurable in the indicator dialog
}