maui-devexpress-dot-maui-dot-charts-90721b2e.md
A rate of change (ROC) indicator.
Namespace : DevExpress.Maui.Charts
Assembly : DevExpress.Maui.Charts.dll
NuGet Package : DevExpress.Maui.Charts
public class RateOfChangeIndicator :
CalculatedSeries
This indicator looks as follows:
ChartView also supports the following oscillators (an oscillator is a trend indicator banded between two extreme values used to discover short-term overbought or oversold conditions):
This example builds a rate of change indicator for Close values of a stock series. Associate this indicator with a separate Y axis and place it below the stock series.
RateOfChangeIndicator 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:RateOfChangeIndicator DisplayName="Rate of Change"
ValueLevel="Close"
PointsCount="14">
<dxc:RateOfChangeIndicator.Data>
<dxc:CalculatedSeriesDataAdapter Series="{Binding Series[0], Source={x:Reference chart}}"/>
</dxc:RateOfChangeIndicator.Data>
<dxc:RateOfChangeIndicator.AxisY>
<dxc:NumericAxisY Position="Far" AlwaysShowZeroLevel="False" GridAlignment="2">
<dxc:NumericAxisY.Range>
<dxc:NumericRange Min="8" Max="12"/>
</dxc:NumericAxisY.Range>
<dxc:NumericAxisY.Layout>
<dxc:AxisLayout Anchor1="0" Anchor2="0.3"/>
</dxc:NumericAxisY.Layout>
</dxc:NumericAxisY>
</dxc:RateOfChangeIndicator.AxisY>
</dxc:RateOfChangeIndicator>
</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>
To change the indicator line appearance, set the RateOfChangeIndicator.Style property to the LineIndicatorStyle object with the specified Stroke and StrokeThickness properties.
<dxc:RateOfChangeIndicator>
<dxc:RateOfChangeIndicator.Style>
<dxc:LineIndicatorStyle Stroke="#e95ddc" StrokeThickness="2"/>
</dxc:RateOfChangeIndicator.Style>
<!--Indicator Data-->
</dxc:RateOfChangeIndicator>
System.Object BindableObject Element ChartElementBase ChartSeriesElement SeriesBase Series CalculatedSeries RateOfChangeIndicator
Yield<RateOfChangeIndicator>()
YieldIfNotNull<RateOfChangeIndicator>()
See Also