Indicates whether previous values in the series change when a new value is added.

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

Syntax

C#
bool OldValuesChange { get; }
Visual Basic (Declaration)
ReadOnly Property OldValuesChange As Boolean
Visual C++
property bool OldValuesChange {
	bool get ();
}

Field Value

Indicates whether previous values in the series change when a new value is added.

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.

See Also