Candlestick are mostly used in the stock market to represent the high, low, open, and close values of the stock. Supports interactive trackball, crosshair feature to track information on data.
A filled candlestick is drawn when the stock closes lower than the opening price, representing the open price at the top and close price at the bottom.
Use multi-series Candlestick to represent two or more data set, each data set representing high, low, open, and close values.
Use line and column charts along with candle chart to show the close and volume of the data.
Allows you to render the stock price in different panes of the chart. Visualize the candle values in one pane and the volume in a different pane.
You can use the range selector along with financial chart to filter and navigate through a large number of data points.
Customizable bull and bear colors.
import { Chart, CandleSeries, Category} from '@syncfusion/ej2-charts';
Chart.Inject(CandleSeries, Category);
let chartData: any[] = [
{ x: 'Jan', open: 120, high: 160, low: 100, close: 140 },
{ x: 'Feb', open: 150, high: 190, low: 130, close: 170 },
{ x: 'Mar', open: 130, high: 170, low: 110, close: 150 },
{ x: 'Apr', open: 160, high: 180, low: 120, close: 140 },
{ x: 'May', open: 150, high: 170, low: 110, close: 130 },
{ x: 'Jun', open: 120, high: 160, low: 100, close: 140 },
{ x: 'Jul', open: 150, high: 190, low: 130, close: 170 },
{ x: 'Aug', open: 130, high: 170, low: 110, close: 150 },
{ x: 'Sep', open: 160, high: 180, low: 120, close: 140 },
{ x: 'Oct', open: 150, high: 170, low: 110, close: 130 }
];
let chart: Chart = new Chart({
primaryXAxis: {
valueType: 'Category',
},
series: [
{
dataSource: chartData,
xName: 'x', open: 'open', close: 'close', high: 'high', low: 'low',
type: 'Candle',
}
],
}, '#Chart');
<!DOCTYPE html>
<html>
<head></head>
<body style = 'overflow: hidden'>
<div id="container">
<div id="Chart"></div>
</div>
<style>
#control-container {
padding: 0px !important;
}
</style>
</body>
</html>