Implements base functionality for an ISeriesCalculator indicator that calculates and stores it's value each time a new bar comes in.

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

Syntax

C#
[SerializableAttribute]
public abstract class SeriesCalculatorBaseWithValues : SeriesCalculatorBase
Visual Basic (Declaration)
<SerializableAttribute> _
Public MustInherit Class SeriesCalculatorBaseWithValues _
	Inherits SeriesCalculatorBase
Visual C++
[SerializableAttribute]
public ref class SeriesCalculatorBaseWithValues abstract : public SeriesCalculatorBase

Remarks

When deriving from this class, call the base constructor with the number of inputs required, and implement the CalcNewValue(Int32) and Reset()()() functions.

Inheritance Hierarchy

System..::.Object
  RightEdge.Common..::.SeriesCalculatorBase
    RightEdge.Common..::.SeriesCalculatorBaseWithValues
      RightEdge.Indicators..::.VariableMA
      RightEdge.Indicators..::.TRIX
      RightEdge.Indicators..::.AroonUp
      RightEdge.Indicators..::.Lowest
      RightEdge.Indicators..::.EnvelopeLower
      RightEdge.Indicators..::.EMA
      RightEdge.Indicators..::.BollingerBandLower
      RightEdge.Indicators..::.Performance
      RightEdge.Indicators..::.TMA
      RightEdge.Indicators..::.SMA
      RightEdge.Indicators..::.rsquared
      RightEdge.Indicators..::.ChandeMomentum
      RightEdge.Indicators..::.HistoricalVolatility
      RightEdge.Indicators..::.ForecastOscillator
      RightEdge.Indicators..::.TEMA
      RightEdge.Indicators..::.StandardErrorBandUpper
      RightEdge.Indicators..::.BollingerBandWidth
      RightEdge.Indicators..::.WildersSmoothing
      RightEdge.Indicators..::.AroonDown
      RightEdge.Indicators..::.RelativeStrength
      RightEdge.Indicators..::.LinearRegressionSlope
      RightEdge.Indicators..::.MACD
      RightEdge.Indicators..::.WeightedMA
      RightEdge.Indicators..::.Momentum
      RightEdge.Indicators..::.VolumeMA
      RightEdge.Indicators..::.PriceOscillator
      RightEdge.Indicators..::.DMI
      RightEdge.Indicators..::.AroonOscillator
      RightEdge.Indicators..::.StdErr
      RightEdge.Indicators..::.StandardErrorBandLower
      RightEdge.Indicators..::.EnvelopeUpper
      RightEdge.Indicators..::.DEMA
      RightEdge.Indicators..::.Consecutive
      RightEdge.Indicators..::.BollingerBandUpper
      RightEdge.Indicators..::.StdDev
      RightEdge.Indicators..::.RMI
      RightEdge.Indicators..::.LinearRegression
      RightEdge.Indicators..::.TimeSeries
      RightEdge.Indicators..::.StochRSI
      RightEdge.Indicators..::.Highest

See Also