maui-devexpress-dot-maui-dot-charts-dot-bollingerbandsindicator-f1000387.md
Gets or sets the number of standard deviations used to plot the upper and lower bands. This is a bindable property.
Namespace : DevExpress.Maui.Charts
Assembly : DevExpress.Maui.Charts.dll
NuGet Package : DevExpress.Maui.Charts
public double StandardDeviationMultiplier { get; set; }
| Type | Default | Description |
|---|---|---|
| Double | 2 |
The number of standard deviations.
|
This example builds a Bollinger Bands indicator for Close prices of a stock series.
StandardDeviationMultiplier property to specify the number of standard deviations that define the distance between the moving average (middle band) and the upper/lower band.<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:BollingerBandsIndicator ValueLevel="Close"
PointsCount="20"
StandardDeviationMultiplier="2"
DisplayName="Bollinger Bands 20">
<dxc:BollingerBandsIndicator.Data>
<dxc:CalculatedSeriesDataAdapter Series="{Binding Series[0], Source={x:Reference chart}}"/>
</dxc:BollingerBandsIndicator.Data>
</dxc:BollingerBandsIndicator>
</dxc:ChartView.Series>
</dxc:ChartView>
See Also