JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://code.highcharts.com/stock/highstock.js"></script>
<script src="http://code.highcharts.com/stock/modules/exporting.js"></script>
<div id="container" style="height: 500px; min-width: 500px"></div>
JavaScript
$(function() {
// create the chart
chart = new Highcharts.StockChart({
chart : {
renderTo : 'container'
},
series : [{
type : 'candlestick',
name : 'AAPL Stock Price',
data :[[1137715200000,1.33132,1.33157,1.33336,1.33007],
[1137974400000,1.33132,1.33157,1.33336,.133007],
[1138060800000,1.33132,1.33157,1.33336,1.33007],
[1138147200000,1.33132,1.33157,1.33336,1.33007],
[1138233600000,1.33132,1.33157,1.33336,1.33007],
[1138320000000,1.33132,1.33157,1.33336,1.33007],
[1138579200000,1.33132,1.33157,1.33336,1.33007],
[1138665600000,1.33132,1.33157,1.33336,1.33007]]
}]
});
});