绿大地股票退市现在叫什么
```html
var options = {
chart: {
type: 'candlestick',
height: 350
},
series: [{
data: [
[1583020800000, 127, 133, 125, 131],
[1583107200000, 132, 137, 130, 135],
[1583193600000, 135, 139, 133, 138],
[1583280000000, 137, 142, 136, 140],
// 添加更多数据点
]
}],
xaxis: {
type: 'datetime'
},
yaxis: {
tooltip: {
enabled: true
}
}
};
var chart = new ApexCharts(document.querySelector("chart"), options);
chart.render();