HTMLcopy
1
<div id="container"></div>
CSScopy
6
1
html, body, #container {
2
width: 100%;
3
height: 100%;
4
margin: 0;
5
padding: 0;
6
}
JavaScriptcopy
x
1
anychart.onDocumentReady(function () {
2
var dataTable = anychart.data.table();
3
4
// The data used in this sample can be obtained from the CDN
5
// https://cdn.anychart.com/csv-data/dji-daily-short.js
6
dataTable.addData(get_dji_daily_short_data());
7
8
var mapping = dataTable.mapAs({high: 2, low: 3, close: 4});
9
10
var chart = anychart.stock();
11
12
// Create computer.
13
var computer = dataTable.createComputer(mapping);
14
15
var context = anychart.math.keltnerChannels.initContext(10, 15, 'sma', 2);
16
17
// Set init context.
18
computer.setContext(context);
19
20
// Call start function.
21
computer.setStartFunction(anychart.math.keltnerChannels.startFunction);
22
23
// Calculation function.
24
computer.setCalculationFunction(anychart.math.keltnerChannels.calculationFunction);
25
computer.addOutputField('maResult');
26
computer.addOutputField('upperResult');
27
computer.addOutputField('lowerResult');
28
29
var plot = chart.plot();
30
plot.line(dataTable, {value: computer.getFieldIndex('maResult')}).name('SMA(10)');
31
plot.line(dataTable, {value: computer.getFieldIndex('upperResult')}).name('Keltner Channels U');
32
plot.line(dataTable, {value: computer.getFieldIndex('lowerResult')}).name('Keltner Channels L');
33
34
chart.container('container');
35
chart.draw();
36
});