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: 400px; min-width: 310px"></div>

JavaScript

$(function () {
    $.getJSON('http://www.highcharts.com/samples/data/jsonp.php?a=e&filename=aapl-ohlc.json&callback=?', function (data) {

        // create the chart
$('#container').highcharts('StockChart', {
  rangeSelector : {
    selected : 1
  },

  title : {
    text : 'EUR_USD Price'
  },

  series : [{
    type : 'candlestick',
    name : 'H1 Bars',
    data : [
        [1431345600000, 1.114185, 1.115615, 1.113535, 1.11425],
        [1431349200000, 1.11422, 1.117515, 1.113825, 1.115425],
        [1431352800000, 1.11546, 1.117055, 1.11461, 1.11483],
        [1431356400000, 1.114865, 1.116215, 1.1131, 1.11424],
        [1431360000000, 1.114215, 1.11585, 1.11335, 1.11585],
        [1431363600000, 1.11582, 1.11696, 1.114645, 1.116135],
        [1431367200000, 1.11613, 1.11673, 1.11483, 1.11556],
        [1431370800000, 1.115535, 1.115915, 1.115095, 1.115165],
        [1431374400000, 1.115135, 1.11566, 1.11507, 1.115505],
        [1431378000000, 1.11556, 1.115825, 1.11515, 1.11521],
        [1431381600000, 1.115215, 1.11549, 1.11484, 1.11487],
        [1431385200000, 1.1149, 1.114975, 1.113925, 1.11457],
        [1431388800000, 1.11455, 1.11519, 1.11345, 1.11402],
        [1431392400000, 1.114015, 1.11478, 1.11366, 1.11475],
        [1431396000000, 1.11471, 1.11664, 1.1146, 1.11619],
        [1431399600000, 1.11616, 1.11669, 1.115335, 1.115535],
        [1431403200000, 1.11557, 1.11731, 1.115535, 1.117145],
        [1431406800000, 1.117175, 1.118975, 1.117145, 1.117625],
        [1431410400000, 1.117595, 1.120205, 1.116735, 1.118365],
        [1431414000000, 1.11839, 1.1237, 1.117635, 1.1226],
        [1431417600000, 1.12264, 1.12679, 1.12264, 1.12585],
        [1431421200000, 1.125885, 1.127915, 1.12494, 1.126665],
        [1431424800000, 1.126695, 1.12738, 1.125145, 1.12534],
        [1431428400000, 1.12532, 1.1257, 1.123335, 1.123605],
        [1431432000000, 1.123625, 1.124605, 1.122675, 1.12284],
        [1431435600000, 1.12288, 1.126275, 1.122245,...