Calculates a new value for the series.

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

Syntax

C#
protected abstract double CalcNewValue(
	int index
)
Visual Basic (Declaration)
Protected MustOverride Function CalcNewValue ( _
	index As Integer _
) As Double
Visual C++
protected:
virtual double CalcNewValue(
	int index
) abstract

Parameters

index
Type: System..::.Int32
The index of the value to calculate.

Return Value

The calculated value of the series at index.

See Also