maui-devexpress-dot-maui-dot-charts-06b3bcda.md
A Bollinger Bands indicator.
Namespace : DevExpress.Maui.Charts
Assembly : DevExpress.Maui.Charts.dll
NuGet Package : DevExpress.Maui.Charts
public class BollingerBandsIndicator :
CalculatedSeries
This indicator looks as follows:
ChartView also supports the StandardDeviationIndicator and MassIndexIndicator trend indicators for financial series.
This example builds a Bollinger Bands indicator for Close prices of a stock series.
BollingerBandsIndicator object to the chart’s collection of series (ChartView.Series).<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>
To change the line appearance of the Bollinger Bands indicator, set its Style property to the BollingerBandsIndicatorStyle object with the specified settings.
<dxc:BollingerBandsIndicator>
<dxc:BollingerBandsIndicator.Style>
<dxc:BollingerBandsIndicatorStyle Stroke="#ff1ceb" StrokeThickness="2"
UpperStroke="#ff1ceb" LowerStroke="#ff1ceb" />
</dxc:BollingerBandsIndicator.Style>
<!--Indicator Data-->
</dxc:BollingerBandsIndicator>
System.Object BindableObject Element ChartElementBase ChartSeriesElement SeriesBase Series CalculatedSeries BollingerBandsIndicator
Yield<BollingerBandsIndicator>()
YieldIfNotNull<BollingerBandsIndicator>()
See Also