BarsRequiredToPlot

<< Click to Display Table of Contents >>

Navigation:  NinjaScript > Language Reference > Indicator >

BarsRequiredToPlot

Previous page Return to chapter overview Next page

Definition

The number of bars on a chart required before the script plots.

 

Note:  This property is NOT the same as a minimum number of bars required to calculate the script values.  OnBarUpdate will always start calculating for the first bar on the chart (CurrentBar 0)

 

 

Property Value

An int value that represents the minimum number of bars required.

 

Syntax

BarsRequiredToPlot

 

Examples

ns

protected override void OnStateChange()
{

    if (State == State.SetDefaults)

    {

         BarsRequiredToPlot = 10; // Do not plot until the 11th bar on the chart
         AddPlot(Brushes.Orange, "SMA");

    }    
}