maui-devexpress-dot-maui-dot-charts-dot-massindexindicator-797e37b9.md
Gets or sets the number of points used to calculate the exponential moving average (EMA). This is a bindable property.
Namespace : DevExpress.Maui.Charts
Assembly : DevExpress.Maui.Charts.dll
NuGet Package : DevExpress.Maui.Charts
public int MovingAveragePointsCount { get; set; }
| Type | Default | Description |
|---|---|---|
| Int32 | 9 |
The count of points used to calculate the EMA.
|
For more information about the mass index indicator parameters, refer to the Mass Index Wikipedia page.
This example builds a mass index indicator for a stock series. Associate this indicator with a separate Y axis and place it below the stock series.
MovingAveragePointsCount and SumPointsCount properties to specify the number of points used to calculate the exponential moving average (EMA) and the number of summable values.<dxc:ChartView x:Name="chart">
<dxc:ChartView.Series>
<dxc:StockSeries>
<dxc:StockSeries.Data>
<dxc:SeriesDataAdapter DataSource="{Binding StockPrices}" ArgumentDataMember="Date">
<dxc:ValueDataMember Type="High" Member="High" />
<dxc:ValueDataMember Type="Low" Member="Low" />
<dxc:ValueDataMember Type="Open" Member="Open" />
<dxc:ValueDataMember Type="Close" Member="Close" />
</dxc:SeriesDataAdapter>
</dxc:StockSeries.Data>
</dxc:StockSeries>
<dxc:MassIndexIndicator DisplayName="Mass Index"
MovingAveragePointsCount="9"
SumPointsCount="25">
<dxc:MassIndexIndicator.Data>
<dxc:CalculatedSeriesDataAdapter Series="{Binding Series[0], Source={x:Reference chart}}"/>
</dxc:MassIndexIndicator.Data>
<dxc:MassIndexIndicator.AxisY>
<dxc:NumericAxisY Position="Far" AlwaysShowZeroLevel="False" GridAlignment="1">
<dxc:NumericAxisY.Range>
<dxc:NumericRange Min="23" Max="26"/>
</dxc:NumericAxisY.Range>
<dxc:NumericAxisY.Layout>
<dxc:AxisLayout Anchor1="0" Anchor2="0.3"/>
</dxc:NumericAxisY.Layout>
</dxc:NumericAxisY>
</dxc:MassIndexIndicator.AxisY>
</dxc:MassIndexIndicator>
</dxc:ChartView.Series>
<dxc:ChartView.AxisY>
<dxc:NumericAxisY Position="Far" AlwaysShowZeroLevel="false" AutoRangeMode="VisibleValues">
<dxc:NumericAxisY.Layout>
<dxc:AxisLayout Anchor1="0.4" Anchor2="1"/>
</dxc:NumericAxisY.Layout>
<dxc:NumericAxisY.Label>
<dxc:AxisLabel Position="Outside" TextFormat="$#"/>
</dxc:NumericAxisY.Label>
</dxc:NumericAxisY>
</dxc:ChartView.AxisY>
</dxc:ChartView>
See Also