Count

<< Click to Display Table of Contents >>

Navigation:  NinjaScript > Language Reference > Common > ISeries<T> >

Count

Previous page Return to chapter overview Next page

Definition

Indicates the number total number of values in the ISeries<T> array.  This value should always be in sync with the CurrentBars array for that series.

 

Method Return Value

A int representing the total size of the series

 

Syntax

Count

 

 

Examples

ns

protected override void OnBarUpdate()
{
  Print("Input count: " + Input.Count);
}