Adding guides on the Stock Chart

HTML

<script type="text/javascript" src="http://www.amcharts.com/lib/3/amcharts.js"></script>
<script type="text/javascript" src="http://www.amcharts.com/lib/3/serial.js"></script>
<script type="text/javascript" src="http://www.amcharts.com/lib/3/themes/none.js"></script>
<script type="text/javascript" src="http://www.amcharts.com/lib/3/amstock.js"></script>
<div id="chartdiv"></div>

CSS

#chartdiv {
	width	: 100%;
	height	: 500px;
}

JavaScript

var chartData = [];

generateChartData();

function generateChartData() {
	var firstDate = new Date();
	firstDate.setDate(firstDate.getDate() - 500);
	firstDate.setHours(0, 0, 0, 0);

	for (var i = 0; i < 500; i++) {
		var newDate = new Date(firstDate);
		newDate.setDate(newDate.getDate() + i);

		var a1 = Math.round(Math.random() * (40 + i)) + 100 + i;
		var b1 = Math.round(Math.random() * (1000 + i)) + 500 + i * 2;

		chartData.push({
			date: newDate,
			value: a1,
			volume: b1
		});
	}
}

var chart = AmCharts.makeChart("chartdiv", {
	type: "stock",
    "theme": "none",
    pathToImages: "http://www.amcharts.com/lib/3/images/",
    baloon: {
        fadeOutDuration: 5
    },

	dataSets: [{
			title: "first data set",
			fieldMappings: [{
				fromField: "value",
				toField: "value"
			}, {
				fromField: "volume",
				toField: "volume"
			}],
			dataProvider: chartData,
			categoryField: "date"
		}
	],
    panelsSettings: {
        creditsPosition: 'top-left'
      },
	panels: [{

			showCategoryAxis: false,
			title: "Value",
			percentHeight: 70,
            drawingIconsEnabled: true,
            trendLineThickness: 5,
            trendLineAlpha: 0.3,
			stockGraphs: [{
				id: "g1",
                showHandOnHover: true,

				valueField: "value",
				comparable: true,
				compareField: "value",
				balloonText: "[[title]]:<b>[[value]]</b>",
				compareGraphBalloonText: "[[title]]:<b>[[value]]</b>"
			}],

			stockLegend: {
				periodValueTextComparing: "[[percents.value.close]]%",
				periodValueTextRegular: "[[value.close]]"
			},
        
            valueAxes: [{
                guides: [{
                    value: 850,
                    lineAlpha: 0.8,
                    lineColor: "#c00",
                    label: "Guide #1",
                    above: false,
                    balloonText: 'some text',
                    position: "left"
                }, {
                    value: 650,
                    lineAlpha: 0.8,
                  ...