Count

View as Markdown

Definition

Indicates the number total number of values in the ISeries 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

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