ITimeSeries.CurrentValue

Syntax

CurrentValue: Variant;

Description

The CurrentValue property returns value of the current series point.

Example

This example describes custom method. Executing the example requires that a data series should be passed by points.

Add links to the MathFin, Ms system assemblies.

Public Function UserCurrentValue(Input: ITimeSeries): Double;
Begin
    Return Math.Log10(Input.CurrentValue);
End Function UserCurrentValue;

After executing the example the method returns natural logarithm of series.

See also:

ITimeSeries