我试图使用Highcharts stockChart在我的网络应用程序上显示公司的历史股票价格图表。正在从CSV文件加载带有股票价格数据的时间戳。我面临的问题是日期时间转换。在CSV文件中,每天只有5年的字符串形式的日期。这个字符串,我正在使用strptime()转换为datetime对象,并将其转换为时间戳,作为参数发送到javascript中的stockChart。但问题是这样 - CSV文件的日期日期为2014-2019,但在图表中,转换后,它在1970年仅显示两天。
我认为这可能是某种与时区有关的转换问题。
Python后端代码(Django views.py函数)
csvFile = company + ".csv"
file = open(csvFile)
reader = csv.reader(file)
data = list(reader)
prices = []
for row in data:
temp = []
temp.append(datetime.timestamp(datetime.strptime((row[0]) + " 09:30:00 +0000", '%Y-%m-%d %H:%M:%S %z')))
temp.append(float(row[1]))
prices.append(temp)
arg = {'symbol':company, 'prices':prices}
return render(request, 'history.html', arg)
JavaScript代码
<script type="text/javascript">
// Create the chart
Highcharts.stockChart('container', {
time: {
useUTC: false
},
rangeSelector: {
buttons: [{
count: 7,
type: 'day',
text: '1W'
}, {
count: 1,
type: 'month',
text: '1M'
}, {
count: 6,
type: 'month',
text: '6M'
}, {
count: 1,
type: 'year',
text: '1Y'
}, {
count: 2,
type: 'year',
text: '2Y'
}, {
type: 'all',
text: 'All'
}],
inputEnabled: true,
selected: 1
},
title: {
text: 'Historical Stock prices'
},
exporting: {
enabled: true
},
series: [{
name: "{{ symbol }}",
data: {{ prices }},
tooltip: {
valueDecimals: 2
}
}]
});
</script>
CSV文件的日期为2014-2019 [
但是在图表中,只显示了1970年的两天。 [
我猜它是日期时间转换为时间戳的问题。有人可以帮帮我吗?
Highcharts使用自1970年以来的毫秒时间作为唯一的日期时间单位。
这意味着你的代码
datetime.timestamp(datetime.strptime((row[0]) + " 09:30:00 +0000", '%Y-%m-%d %H:%M:%S %z'))
需要返回毫秒,而不是秒。
最简单的解决方法就是:
datetime.timestamp(datetime.strptime((row[0]) + " 09:30:00 +0000", '%Y-%m-%d %H:%M:%S %z'))*1000
This answer还有其他一些方法可以将datetime转换为毫秒,具体取决于你运行的python版本。
您的成品价格数组应如下所示:
[
[1553588587236, 38.84],
[1553588588236, 31.31],
...
]