Version

Financial Series

The UltraDataChart™ control’s FinancialPriceSeries used to plot stock prices, and show the stock’s high, low, open, and close prices over time. In addition, it can display trend lines for stock prices. Financial Price Series is often used in combination with a number of other Financial Indicators to measure changes and analyze trends of stock prices.

Display Modes

The Financial Price Series has two display modes that are configurable by setting enumerable value on the DisplayType property.

Candlestick Mode

The FinancialPriceSeries in Candlestick mode is used to plot stock prices, and show the stock’s high, low, open and close prices for each day. Each data point is plotted as a vertical column with vertical lines on both the top and bottom. The vertical line indicates the span between high and low values of an investment. The top of the vertical line indicates the highest price during a session and the bottom of the vertical line indicates the lowest price during a session. The vertical columns indicate the span between the opening and closing values of an investment. The columns are filled using Series’ Brush when there is positive value and using Series’ NegativeBrush when there is negative value between the opening and closing values

xamDataChart Financial Price Series in Candlestick Mode 01.png

OHLC Mode

The FinancialPriceSeries in OHLC display mode is used to plot stock prices, and show the stock’s High, Low, Open, and Close prices for each day. Each data point is plotted as a vertical line with horizontal perpendicular lines on both the left and right side. The vertical line indicates the span between high and low values of an investment. The top of the vertical line indicates the highest price during a session and the bottom of the vertical line indicates the lowest price during a session. The horizontal lines indicate the span between the opening and closing values of an investment. The horizontal line on the left-hand side of the vertical line indicates the opening value of a session. The horizontal line on the right-hand side of the vertical line indicates the closing value of a session

xamDataChart Financial Price Series in OHLC Mode 01.png

Code Example

The following code snippet shows how to add FinancialPriceSeries in Candlestick mode to the UltraDataChart control and bind Stock Price Data source.

In C#:

var data = new StockPriceData();
var yAxis = new NumericYAxis();
var xAxis = new CategoryXAxis();
xAxis.DataSource = data;
xAxis.Label = "{Date}";
var series = new FinancialPriceSeries();
series.DisplayType = PriceDisplayType.Candlestick;
series.DataSource = data;
series.OpenMemberPath = "Open";
series.HighMemberPath = "High";
series.LowMemberPath = "Low";
series.CloseMemberPath = "Close";
series.VolumeMemberPath = "Volume";
series.XAxis = xAxis;
series.YAxis = yAxis;
chart.Axes.Add(xAxis);
chart.Axes.Add(yAxis);
chart.Series.Add(series);

In Visual Basic:

Dim data As New StockPriceData()
Dim yAxis As New NumericYAxis()
Dim xAxis As New CategoryXAxis()
xAxis.DataSource = data
xAxis.Label = "{Date}"
Dim series As New FinancialPriceSeries()
series.DisplayType = PriceDisplayType.Candlestick
series.DataSource = data
series.OpenMemberPath = "Open"
series.HighMemberPath = "High"
series.LowMemberPath = "Low"
series.CloseMemberPath = "Close"
series.VolumeMemberPath = "Volume"
series.XAxis = xAxis
series.YAxis = yAxis
chart.Axes.Add(xAxis)
chart.Axes.Add(yAxis)
chart.Series.Add(series)