The ISeriesCalculator type exposes the following members.

Methods

  NameDescription
GetInputs
Gets a list of the inputs this indicator uses.
LookBack
Looks back within the series for the specified value. A value of 0 represents the most recent value.
(Inherited from ISeries.)
NewBar
Updates the series for a new bar.
NewSeries
Resets the series and recalculates it (if necessary) based on the inputs.
SetInputs
Sets the input series for a ISeriesCalculator indicator.

Properties

  NameDescription
ChartSettings
Contains settings for how the series should be displayed on a chart.
(Inherited from ISeries.)
Count
The number of values in the series.
(Inherited from ISeries.)
Current
The current value of the series. This property should return the same value as calling LookBack(0).
(Inherited from ISeries.)
OldestValueChanged
The lookback index of the oldest value that changed. Should be zero unless OldValuesChange is true.
(Inherited from ISeries.)
OldValuesChange
Indicates whether previous values in the series change when a new value is added.
(Inherited from ISeries.)

See Also