Click or drag to resize

MZpackStrategyBaseOnCreateIndicators Property

Assign delegate to create and return list of MZpack indicators.

Namespace:  MZpack.NT8.Algo
Assembly:  MZpack.NT8.Pro (in MZpack.NT8.Pro.dll) Version: 3.18.1.0 (3.18.1.0)
Syntax
C#
public OnCreateIndicatorsDelegate OnCreateIndicators { get; set; }

Property Value

Type: OnCreateIndicatorsDelegate
Examples
C#
// Constructor
public MyMZpackCustomStrategy() : base()
{
    OnCreateIndicators = new OnCreateIndicatorsDelegate(CreateIndicators);
}

protected List<TickIndicator> CreateIndicators()
{
}
See Also