anychart.onDocumentReady(function () {
var dataTable = anychart.data.table();
dataTable.addData(get_dji_daily_short_data());
var mapping = dataTable.mapAs({open: 1, high: 2, low: 3, close: 4, 'volume': 5});
var chart = anychart.stock();
var indicatorPlot = chart.plot(1);
var atrIndicator = indicatorPlot.adl(mapping, 'column');
var series = atrIndicator.series();
series.allowPointSettings(true);
series.fill(function () {
if (this.iterator.getIndex() > 150)
indicatorPlot.yAxis().labels().format(function () {
return anychart.format.number(this.value, {scale: true})
chart.title('Enable access to the point settings and modify the point');
chart.container('container');