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
3
// the data used in this sample can be obtained from the CDN
4
// https://cdn.anychart.com/csv-data/csco-daily.js
5
// create a data table using this data
6
var dataTable = anychart.data.table();
7
dataTable.addData(get_csco_daily_short_data());
8
9
// map the data
10
var mapping = dataTable.mapAs({"value": 4});
11
12
// create a stock chart
13
var chart = anychart.stock();
14
15
// create a plot on the chart
16
var plot = chart.plot(0);
17
18
// create a line series
19
var lineSeries = plot.line(mapping);
20
lineSeries.name("CSCO");
21
22
// access the annotations() object of the plot to work with annotations
23
var controller = plot.annotations();
24
25
// create the first Fibonacci Retracement annotation and configure its visual settings
26
var fibonacciRetracement1 = controller.fibonacciRetracement({
27
xAnchor: "2006-07-30",
28
valueAnchor: 17.24,
29
secondXAnchor: "2007-01-07",
30
secondValueAnchor: 28.92,
31
normal: {
32
labels: {fontColor: "#FF0000"}
33
},
34
hovered: {
35
stroke: "#ff0000",
36
trend: "#0000ff",
37
labels: {fontColor: "#ff0000"}
38
},
39
selected: {
40
stroke: "2 #ff0000",
41
trend: "2 #0000ff",
42
labels: {fontColor: "#ff0000"}
43
}
44
});
45
46
// create the second Fibonacci Retracement annotation
47
var fibonacciRetracement2 = controller.fibonacciRetracement();
48
49
// set the position of the second annotation
50
fibonacciRetracement2.xAnchor("2007-09-23");
51
fibonacciRetracement2.valueAnchor(33.1);
52
fibonacciRetracement2.secondXAnchor("2004-08-08");
53
fibonacciRetracement2.secondValueAnchor(17.86);
54
55
// configure the visual settings of the second annotation
56
fibonacciRetracement2.normal().labels().fontColor("#00b300");
57
fibonacciRetracement2.normal().stroke("#006600", 1, "10 2");
58
fibonacciRetracement2.hovered().stroke("#00b300", 1, "10 2");
59
fibonacciRetracement2.selected().stroke("#00b300", 1, "10 2");
60
61
// set the chart title
62
chart.title("Fibonacci Retracement: Appearance");
63
64
// set the container id
65
chart.container("container");
66
67
// initiate drawing the chart
68
chart.draw();
69
});