Class AdaptiveMovingAverageKaufmanIndicator
Represents an Adaptive Moving Average Kaufman indicator for financial chart analysis. This indicator extends ValuePeriodIndicatorBase to provide adaptive moving average calculations based on Kaufman's algorithm.
Inheritance
Inherited Members
Namespace: Telerik.Maui.Controls.Compatibility.Chart
Assembly: Telerik.Maui.Controls.Compatibility.dll
Syntax
public class AdaptiveMovingAverageKaufmanIndicator : ValuePeriodIndicatorBase, IParentElement, IChildElement
Constructors
AdaptiveMovingAverageKaufmanIndicator()
Declaration
public AdaptiveMovingAverageKaufmanIndicator()
Fields
FastPeriodProperty
Identifies the FastPeriod bindable property.
Declaration
public static readonly BindableProperty FastPeriodProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
SlowPeriodProperty
Identifies the SlowPeriod bindable property.
Declaration
public static readonly BindableProperty SlowPeriodProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
Properties
FastPeriod
Gets or sets the fast period used in the adaptive moving average calculation.
Declaration
public int FastPeriod { get; set; }
Property Value
System.Int32
An System.Int32 representing the number of periods for the fast moving average. The default value is 0. |
SlowPeriod
Gets or sets the slow period used in the adaptive moving average calculation.
Declaration
public int SlowPeriod { get; set; }
Property Value
System.Int32
An System.Int32 representing the number of periods for the slow moving average. The default value is 0. |