anychart.onDocumentReady(function () {
var dataTable = anychart.data.table();
dataTable.addData(get_csco_daily_short_data());
mapping = dataTable.mapAs({'open': 1, 'high': 2,'low': 3,'close':4, 'value': 5});
var chart = anychart.stock();
ohlcSeries = chart.plot(0).ohlc(mapping);
lineSeries = chart.plot(1).line(mapping);
var indicator1 = chart.plot(0).priceIndicator();
indicator1.value('last-visible');
indicator1.fallingStroke('#EF9A9A');
indicator1.fallingLabel({background: '#F44336'});
indicator1.risingStroke('#4CAF50');
indicator1.risingLabel({background: '#A5D6A7'});
var indicator2 = chart.plot(1).priceIndicator();
indicator2.stroke("Black", 2, "2 2");
indicator2.label().background().fill("White");
indicator2.label().fontColor("Black");
chart.title("Price Indicator: Appearance");
chart.container("container");
chart.padding().left(75);