LinesConfigurable
Previous Topic  Next Topic 

Definition

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


Property Value

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


Syntax

LinesConfigurable


Examples

// Initialize method of a custom indicator
protected override void Initialize()
{
    Add(new Plot(Color.Orange, "SMA"));
    LinesConfigurable = false; // Indicator lines are not configurable
}