布林带的正确价值顺序
The right order of values for Bollinger Bands
我正在尝试使用官方 Highcharts 文档中的布林带演示 here:
$.getJSON('https://www.highcharts.com/samples/data/aapl-ohlc.json', function (data) {
Highcharts.stockChart('container', {
rangeSelector: {
selected: 2
},
title: {
text: 'AAPL Stock Price'
},
legend: {
enabled: true
},
plotOptions: {
series: {
showInLegend: true
}
},
series: [{
type: 'ohlc',
id: 'aapl',
name: 'AAPL Stock Price',
data: data
}, {
type: 'bb',
linkedTo: 'aapl'
}]
});
});
当我访问 JSON link 提供的 (https://www.highcharts.com/samples/data/aapl-ohlc.json) 时,我看到以下格式的数据:
[
[
1467984600000,
96.49,
96.89,
96.05,
96.68,
],
[
1468243800000,
96.75,
97.65,
96.73,
96.98,
],
...
]
令我感到困惑的是这些值按顺序代表什么。第一个肯定是时间戳;第二个应该是 运行 平均值......那么接下来的三个是什么?请注意,我了解布林带背后的想法并已完成所需的计算,但我认为我没有得到布林带,因为我不确定顺序。
提前致谢!
OHLC系列的数据是defined in the API,但基本上你看到的格式如下:
An array of arrays with 5 or 4 values. In this case, the values correspond to x,open,high,low,close
.
或者你可以用对象来做:
{
x: 1,
open: 3,
high: 4,
low: 5,
close: 2,
name: "Point name"
}
当您随后包含 indicators.js
后跟 bollinger-bands.js
时,您应该通过将 bb
系列链接到 ohlc
系列来计算和显示布林带,而无需实际提供布林带本身的任何其他数据。
布林带存在一些额外的 plotOptions
,如 seen in the API。
我正在尝试使用官方 Highcharts 文档中的布林带演示 here:
$.getJSON('https://www.highcharts.com/samples/data/aapl-ohlc.json', function (data) {
Highcharts.stockChart('container', {
rangeSelector: {
selected: 2
},
title: {
text: 'AAPL Stock Price'
},
legend: {
enabled: true
},
plotOptions: {
series: {
showInLegend: true
}
},
series: [{
type: 'ohlc',
id: 'aapl',
name: 'AAPL Stock Price',
data: data
}, {
type: 'bb',
linkedTo: 'aapl'
}]
});
});
当我访问 JSON link 提供的 (https://www.highcharts.com/samples/data/aapl-ohlc.json) 时,我看到以下格式的数据:
[
[
1467984600000,
96.49,
96.89,
96.05,
96.68,
],
[
1468243800000,
96.75,
97.65,
96.73,
96.98,
],
...
]
令我感到困惑的是这些值按顺序代表什么。第一个肯定是时间戳;第二个应该是 运行 平均值......那么接下来的三个是什么?请注意,我了解布林带背后的想法并已完成所需的计算,但我认为我没有得到布林带,因为我不确定顺序。
提前致谢!
OHLC系列的数据是defined in the API,但基本上你看到的格式如下:
An array of arrays with 5 or 4 values. In this case, the values correspond to
x,open,high,low,close
.
或者你可以用对象来做:
{
x: 1,
open: 3,
high: 4,
low: 5,
close: 2,
name: "Point name"
}
当您随后包含 indicators.js
后跟 bollinger-bands.js
时,您应该通过将 bb
系列链接到 ohlc
系列来计算和显示布林带,而无需实际提供布林带本身的任何其他数据。
布林带存在一些额外的 plotOptions
,如 seen in the API。