Called to calculate the next value in the series.

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

Syntax

C#
public abstract double CalcNextValue(
	BarData bar
)
Visual Basic (Declaration)
Public MustOverride Function CalcNextValue ( _
	bar As BarData _
) As Double
Visual C++
public:
virtual double CalcNextValue(
	BarData^ bar
) abstract

Parameters

bar
Type: RightEdge.Common..::.BarData
The latest bar passed in to perform the calculation on.

Return Value

A double containing the newly calculated value.

See Also