Indicates whether previous values in the series change when a new value is added.
Namespace:
RightEdge.CommonAssembly: Common (in Common.dll) Version: 2010.1.0.0 (2010.1.0.0)
Syntax
| C# |
|---|
public virtual bool OldValuesChange { get; } |
| Visual Basic (Declaration) |
|---|
Public Overridable ReadOnly Property OldValuesChange As Boolean |
| Visual C++ |
|---|
public: virtual property bool OldValuesChange { bool get (); } |
Field Value
Indicates whether previous values in the series change when a new value is added.Implements
ISeries..::.OldValuesChange
Remarks
Usually, in a series that is related to bar data, a new value will be calculated
and added to the end of the series when a new bar comes in. The previous values
of the series will not change. Return true for this property to indicate that
this is not the case. If this returns true, then the OldestValueChanged
property should reflect what values changed.