分析股票历史收益对比
股票历史收益对比图表是投资者评估股票投资表现的重要工具。通过比较不同股票的历史收益率,投资者可以更好地了解不同股票的表现,帮助他们做出更明智的投资决策。
1.
2.
3.
4.
下面是基于某行业两只代表性股票的历史收益对比图表,帮助投资者更好地了解它们的表现:
```html
canvas {
mozuserselect: none;
webkituserselect: none;
msuserselect: none;
}
var ctx = document.getElementById('stockChart').getContext('2d');
var stockChart = new Chart(ctx, {
type: 'line',
data: {
labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul'],
datasets: [{
label: 'Stock A',
data: [3, 5, 7, 9, 8, 6, 4],
borderColor: 'rgba(255, 99, 132, 1)',
borderWidth: 2,
fill: false
},
{
label: 'Stock B',
data: [4, 6, 8, 7, 6, 5, 3],
borderColor: 'rgba(54, 162, 235, 1)',
borderWidth: 2,
fill: false
}]
},
options: {
scales: {
yAxes: [{
ticks: {
beginAtZero: false
}
}]
}
}
});