Input
Definition
The main historical data input. If implemented in the NinjaScript object, it allows for more flexibility as non bars based series such as plot series could be passed in and drive the calculation outcomes - an example would be a custom moving average that should have the ability to operate on another moving average (i.e. the SMA) as input series.
Property Value
An ISeries\<double\> type object that implements the Series<double> interface. Accessing this property via an index value int barsAgo returns A double value representing the price of the referenced bar.
Syntax
Input
Input[int barsAgo]
Examples
Tip: When working with multi-series indicators, Input is not guaranteed to reference the primary BarsInProgress. Please be mindful as to when you access Input[0] as you will only be able to do so after the contextual BarsInProgress has bars. To check to ensure BarsInProgress has some bars you can use CurrentBars to check.

