useEffect(() => {
setBlocks(status);
}, [status]);
// create a chart
chart = anychart.candlestick();
// create a japanese candlestick series and set the data
var series = chart.candlestick(data);
// set the container id
chart.container("container");
// initiate drawing the chart
chart.draw();