wpf-115290-controls-and-libraries-charts-suite-chart-control-series-indicators-price-indicators.md
The Chart control allows you to add Price indicators to a financial chart.
This document consists of the following sections:
The following table represents the available Price indicators with formulas that are used to calculate indicator values:
| Price indicator | Class | Formula |
|---|---|---|
| Median Price | MedianPrice | |
| Weighted Close | WeightedClose | |
| Typical Price | TypicalPrice |
Note
In formulas, High, Low, Close are values of a financial series point.
Use the following code to add the Median Price indicator to the series collection of indicators:
<dxc:StockSeries2D DisplayName="Series">
<dxc:StockSeries2D.Indicators>
<dxc:MedianPrice LegendText="Median Price"
ShowInLegend="True"/>
</dxc:StockSeries2D.Indicators>
<!--.....-->
</dxc:StockSeries2D>
The following classes and properties are used in this code:
| Class or Property | Description |
|---|---|
| XYSeries2D.Indicators | The series collection of indicators. |
| MedianPrice | The Median Price indicator. |
| Indicator.ShowInLegend | Specifies whether to show the indicator in a legend. |
| Indicator.LegendText | Specifies text that identifies the indicator in a legend. |
See Also