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
// The data used in this sample can be obtained from the CDN
3
// https://cdn.anychart.com/csv-data/csco-daily.js
4
// create data table on loaded data
5
var dataTable = anychart.data.table();
6
dataTable.addData(get_csco_daily_data());
7
8
// map loaded data
9
var mapping = dataTable.mapAs({"open": 1, "high": 2, "low": 3, "close": 4});
10
11
// create stock chart
12
var chart = anychart.stock();
13
14
// create plot on the chart
15
var plot = chart.plot(0);
16
17
// create ohlc series
18
var ohlcSeries = plot.ohlc(mapping);
19
ohlcSeries.name("CSCO");
20
21
// create PSAR indicator
22
var psar = plot.psar(mapping, 0.08, 0.60, 0.10).series();
23
psar.stroke("0.5 lightGray");
24
25
// create scroller series with mapped data
26
chart.scroller().line(mapping);
27
28
// set container id for the chart
29
chart.container("container");
30
31
// initiate chart drawing
32
chart.draw();
33
});