Skip to main content

RelativeStrengthIndexIndicator.ValueLevel Property

Gets or sets the price level (Low, High, Open, or Close) for which the indicator is calculated.

Namespace: DevExpress.XamarinForms.Charts

Assembly: DevExpress.XamarinForms.Charts.dll

NuGet Package: DevExpress.XamarinForms.Charts

Declaration

public ValueLevel ValueLevel { get; set; }

Property Value

Type Description
ValueLevel

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.

Example

This example demonstrates how to build a relative strength index indicator for Close values of a stock series. Associate this indicator with a separate Y axis and place it below the stock series.

  1. Add the RelativeStrengthIndexIndicator object to the chart’s collection of series (ChartView.Series).
  2. 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.
  3. 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:RelativeStrengthIndexIndicator DisplayName="Relative Strength Index"
                                            ValueLevel="Close"
                                            PointsCount="14">
            <dxc:RelativeStrengthIndexIndicator.Data>
                <dxc:CalculatedSeriesDataAdapter Series="{Binding Series[0], Source={x:Reference chart}}"/>
            </dxc:RelativeStrengthIndexIndicator.Data>
            <dxc:RelativeStrengthIndexIndicator.AxisY>
                <dxc:NumericAxisY Position="Far" AlwaysShowZeroLevel="False" GridAlignment="50">
                    <dxc:NumericAxisY.Range>
                        <dxc:NumericRange Min="0" Max="90"/>
                    </dxc:NumericAxisY.Range>
                    <dxc:NumericAxisY.Layout>
                        <dxc:AxisLayout Anchor1="0" Anchor2="0.3"/>
                    </dxc:NumericAxisY.Layout>
                </dxc:NumericAxisY>
            </dxc:RelativeStrengthIndexIndicator.AxisY>
        </dxc:RelativeStrengthIndexIndicator>
    </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>
See Also