Valid Input Data for Indicator Methods
System indicator methods require valid input data to function property. Indicator methods can accept the following forms of input data:
Default Input
The default input (Inputs[BarsInProgress) of the custom indicator, Market Analyzer row or strategy is used if input is not specified.
Price Series
Open, High, Low, Close and Volume can all be used as input for an indicator method.
Indicator
Indicators can be used as input for other indicators.
Series<double>
Series<double> can be used as input for indicators.
Bars Object
A Bars object (which holds a series that contains OHLC data) can be used as input for indicators.
Tip: The input series of an indicator cannot be the hosting indicator itself, as this will cause recursive loops.

