Constructor for the SeriesCalculatorBaseSimple class.

Namespace:  RightEdge.Common
Assembly:  Common (in Common.dll) Version: 2010.1.0.0 (2010.1.0.0)

Syntax

C#
public SeriesCalculatorBaseSimple(
	int numberOfInputs
)
Visual Basic (Declaration)
Public Sub New ( _
	numberOfInputs As Integer _
)
Visual C++
public:
SeriesCalculatorBaseSimple(
	int numberOfInputs
)

Parameters

numberOfInputs
Type: System..::.Int32
The number of input series that this indicator requires. If SetInputs(array<ISeries>[]()[]) is called with a number of inputs that does not match this value, it will throw an Exception. May be VARIABLE_NUM_INPUTS if the indicator can take a variable number of inputs.

See Also