NinjaScript > Language Reference > Indicator >

PlotsConfigurable

Print this Topic Previous pageReturn to chapter overviewNext page

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
}