ILanerCalculateSerie.CreateFactor

Syntax

CreateFactor([SaveOptions: LnSaveOptions= 255]): IRubricatorFactor;

Parameters

SaveOptions. An optional parameter, that indicates the changes to be saved.

Description

The CreateFactor method creates an indicator based on a calculated series.

Example

Executing the example requires a form with the following components: the Button component named Button1, the TabSheetBox component named TabSheetBox1, and the UiErAnalyzer component named UiErAnalyzer1. UiErAnalyzer1 is a data source for TabSheetBox1. A working area of the time series database that includes the calculated series should be loaded to UiErAnalyzer1.

The example is a handler of the OnClick event for the Button1 component.

Add links to the Cubes, Express, ExtCtrls, Forms, Laner, and Tab system assemblies.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
    ErAn: IEaxAnalyzer;
    Laner: ILaner;
    Serie: ILanerSerie;
    CalculateSerie: ILanerCalculateSerie;
    Factor: IRubricatorFactor;
    i: integer;
    FData: IRubricatorFactData;
Begin
    ErAn := UiErAnalyzer1.ErAnalyzer;
    Laner := ErAn.Laner;
    For i := 0 To Laner.Series.Count - 1 Do
        Serie := Laner.Series.Item(i);
        If Serie.Kind = LnSerieKind.Calculate Then
            CalculateSerie := Serie As ILanerCalculateSerie;
            Factor := CalculateSerie.CreateFactor;
            FData := Factor.FactData;
            Debug.WriteLine(FData.FactorKey);
        End If;
    End For;
End Sub Button1OnClick;

After executing the example the console window displays the keys of the indicators corresponding to the calculated series.

See also:

ILanerCalculateSerie