Input

View as Markdown

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

1// Prints the the current value of input
2Print(Input[0].ToString());
1// Prints the the current type of input passed to the object, so we can detect if we're working on a price based series such as OHLCV or a derivative such as an SMA indicator
2if (Input is PriceSeries)
3 Print("Price Series Input");
4if (Input is Indicator)
5 Print("Indicator Input");
6// Prints the the current selected price type for the input series
7else if (State == State.DataLoaded)
8{
9 PriceSeries priceSeries = Inputs[0] as PriceSeries;
10
11 if (priceSeries != null)
12 Print("PriceType selected: " + priceSeries.PriceType);
13}

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.