maui-devexpress-dot-maui-dot-charts-dot-weightedmovingaverageindicator-dd9372fb.md
Gets or sets the price level (Low, High, Open, or Close) for which the moving average indicator is calculated. This is a bindable property.
Namespace : DevExpress.Maui.Charts
Assembly : DevExpress.Maui.Charts.dll
NuGet Package : DevExpress.Maui.Charts
public ValueLevel ValueLevel { get; set; }
| Type | Default | Description |
|---|---|---|
| ValueLevel | Auto |
A value that indicates the price level of a financial series point.
|
Available values:
| Name | Description |
|---|---|
| Auto | |
| Value |
Indicates the point value of a series that requires only one value for a data point.
| | Weight |
Indicates the weight value of a bubble series point.
| | High |
Indicates the High price of a financial series point.
| | Low |
Indicates the Low price of a financial series point.
| | Open |
Indicates the Open price of a financial series point.
| | Close |
Indicates the Close price of a financial series point.
|
This example builds a weighted moving average indicator for Close values of a stock series.
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:WeightedMovingAverageIndicator>
ValueLevel="Close"
PointsCount="20"
DisplayName="WMA 20">
<dxc:WeightedMovingAverageIndicator.Data>
<dxc:CalculatedSeriesDataAdapter Series="{Binding Series[0], Source={x:Reference chart}}"/>
</dxc:WeightedMovingAverageIndicator.Data>
</dxc:WeightedMovingAverageIndicator>
</dxc:ChartView.Series>
</dxc:ChartView>
See Also
WeightedMovingAverageIndicator Class