-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstockOnlyStrategy1.html
100 lines (100 loc) · 1.86 KB
/
stockOnlyStrategy1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<html>
<head>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load('visualization', '1.0', {'packages':['corechart']});
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
['x values','y values'],
[-1.00557, 0],
[-1.00557, 9],
[-0.923172, 9],
[-0.923172, 0],
[-0.923172, 0],
[-0.923172, 12],
[-0.840774, 12],
[-0.840774, 0],
[-0.840774, 0],
[-0.840774, 53],
[-0.758376, 53],
[-0.758376, 0],
[-0.758376, 0],
[-0.758376, 130],
[-0.675978, 130],
[-0.675978, 0],
[-0.675978, 0],
[-0.675978, 219],
[-0.59358, 219],
[-0.59358, 0],
[-0.59358, 0],
[-0.59358, 329],
[-0.511183, 329],
[-0.511183, 0],
[-0.511183, 0],
[-0.511183, 426],
[-0.428785, 426],
[-0.428785, 0],
[-0.428785, 0],
[-0.428785, 486],
[-0.346387, 486],
[-0.346387, 0],
[-0.346387, 0],
[-0.346387, 554],
[-0.263989, 554],
[-0.263989, 0],
[-0.263989, 0],
[-0.263989, 621],
[-0.181591, 621],
[-0.181591, 0],
[-0.181591, 0],
[-0.181591, 698],
[-0.0991937, 698],
[-0.0991937, 0],
[-0.0991937, 0],
[-0.0991937, 689],
[-0.0167959, 689],
[-0.0167959, 0],
[-0.0167959, 0],
[-0.0167959, 646],
[0.0656019, 646],
[0.0656019, 0],
[0.0656019, 0],
[0.0656019, 555],
[0.148, 555],
[0.148, 0],
[0.148, 0],
[0.148, 844],
[0.230398, 844],
[0.230398, 0],
[0.230398, 0],
[0.230398, 2489],
[0.312795, 2489],
[0.312795, 0],
[0.312795, 0],
[0.312795, 990],
[0.395193, 990],
[0.395193, 0],
[0.395193, 0],
[0.395193, 221],
[0.477591, 221],
[0.477591, 0],
[0.477591, 0],
[0.477591, 25],
[0.559989, 25],
[0.559989, 0],
[0.559989, 0],
[0.559989, 4],
[0.642387, 4],
[0.642387, 0]
]);
var options = {title: 'Stock Only Strategy sigma=0.5 mu=0.01', 'width':800, 'height':800};
var chart = new google.visualization.LineChart(document.getElementById('chart_div'));
chart.draw(data, options);
}
</script>
</head>
<body>
<div id='chart_div'>
</body>
</html>