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});
var chart = anychart.stock();
var series = plot.ohlc(mapping);
var fallingStrokeSettings = series.fallingStroke();
chart.title({background: {stroke: fallingStrokeSettings}, text: 'Get and use falling stroke'});
chart.container('container');