ExponentialMovingAverageIndicator.PointsCount Property
Gets or sets the number of data points used to calculate the moving average indicator.
Namespace: DevExpress.XamarinForms.Charts
Assembly: DevExpress.XamarinForms.Charts.dll
NuGet Package: DevExpress.XamarinForms.Charts
Declaration
public int PointsCount { get; set; }
Property Value
Type | Description |
---|---|
Int32 | The number of points. |
Example
This example demonstrates how to build a exponential moving average indicator for Close values of a stock series.
- Add the ExponentialMovingAverageIndicator object to the chart’s collection of series (ChartView.Series).
- Set the indicator’s Data property to a CalculatedSeriesDataAdapter class instance. Use this object’s Series property to specify a series for which the indicator should be calculated.
- Use the ValueLevel and
PointsCount
properties to specify the price level of a financial series point and the number of data points used to calculate the indicator.
<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:ExponentialMovingAverageIndicator>
ValueLevel="Close"
PointsCount="20"
DisplayName="EMA 20">
<dxc:ExponentialMovingAverageIndicator.Data>
<dxc:CalculatedSeriesDataAdapter Series="{Binding Series[0], Source={x:Reference chart}}"/>
</dxc:ExponentialMovingAverageIndicator.Data>
</dxc:ExponentialMovingAverageIndicator>
</dxc:ChartView.Series>
</dxc:ChartView>
See Also