NinjaScript > Language Reference > Indicator >

DisplayInDataBox

Print this Topic Previous pageReturn to chapter overviewNext page

Definition
If true, the indicator plot(s) values are displayed in the chart data box.

 

Property Value

This property returns true if the indicator plot(s) values are displayed in the chart data box; otherwise, false. Default set to true.

 

Syntax

DisplayInDataBox

 

 

Examples

// Initialize method of a custom indicator
protected override void Initialize()
{
    Add(new Plot(Color.Orange, "SMA"));
    DisplayInDataBox = false;
}