forked from philsong/technical-indicators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtechnical-indicators.src.js
386 lines (293 loc) · 9.19 KB
/
technical-indicators.src.js
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
(function (H) {
// create shortcuts
var defaultOptions = H.getOptions(),
defaultPlotOptions = defaultOptions.plotOptions,
seriesTypes = H.seriesTypes;
// Trendline functionality and default options.
defaultPlotOptions.trendline = H.merge(defaultPlotOptions.line, {
marker: {
enabled: false
},
tooltip: {
valueDecimals: 2
}
});
seriesTypes.trendline = H.extendClass(seriesTypes.line, {
type: 'trendline',
animate: null,
requiresSorting: false,
processData: function() {
var data;
if (this.linkedParent) {
data = [].concat(this.linkedParent.options.data)
this.setData(this.runAlgorithm(), false);
}
H.Series.prototype.processData.call(this);
},
runAlgorithm: function () {
var xData = this.linkedParent.xData,
yData = this.linkedParent.yData,
periods = this.options.periods || 100, // Set this to what default? should be defaults for each algorithm.
algorithm = this.options.algorithm || 'linear';
return this[algorithm](xData, yData, periods);
},
/* Function that uses the calcMACD function to return the MACD line.
*
* @return : the first index of the calcMACD return, the MACD.
**/
MACD: function (xData, yData, periods) {
return calcMACD(xData, yData, periods)[0];
},
/* Function that uses the global calcMACD.
*
* @return : the second index of the calcMACD return, the signalLine.
**/
signalLine: function (xData, yData, periods) {
return calcMACD(xData, yData, periods)[1];
},
/* Function using the global SMA function.
*
* @return : an array of SMA data.
**/
SMA: function (xData, yData, periods) {
return SMA(xData, yData, periods);
},
/* Function using the global EMA function.
*
* @return : an array of EMA data.
**/
EMA: function (xData, yData, periods) {
return EMA(xData, yData, periods);
},
/* Function that uses the global linear function.
*
* @return : an array of EMA data
**/
linear: function (xData, yData, periods) {
return linear(xData, yData, periods);
}
});
// Setting default options for the Histogram type.
defaultPlotOptions.histogram = H.merge(defaultPlotOptions.column, {
borderWidth : 0,
tooltip: {
valueDecimals: 2
}
});
seriesTypes.histogram = H.extendClass(seriesTypes.column, {
type: 'histogram',
animate: null,
requiresSorting: false,
processData: function() {
var data;
if (this.linkedParent) {
data = [].concat(this.linkedParent.options.data)
this.setData(this.runAlgorithm(), false);
}
H.Series.prototype.processData.call(this);
},
runAlgorithm: function () {
var xData = this.linkedParent.xData,
yData = this.linkedParent.yData,
periods = this.options.periods || 100, // Set this to what default? should be defaults for each algorithm.
algorithm = this.options.algorithm || 'histogram';
return this[algorithm](xData, yData, periods);
},
histogram: function (xData, yData, periods) {
return calcMACD(xData, yData, periods)[2];
},
});
// Global functions.
/* Function that calculates the MACD (Moving Average Convergance-Divergence).
*
* @param yData : array of y variables.
* @param xData : array of x variables.
* @param periods : The amount of "days" to average from.
* @return : An array with 3 arrays. (0 : macd, 1 : signalline , 2 : histogram)
**/
function calcMACD (xData, yData, periods) {
var chart = this,
shortPeriod = 12,
longPeriod = 26,
signalPeriod = 9,
shortEMA,
longEMA,
MACD = [],
xMACD = [],
yMACD = [],
signalLine = [],
histogram = [];
// Calculating the short and long EMA used when calculating the MACD
shortEMA = EMA(xData, yData, shortPeriod);
longEMA = EMA(xData, yData, longPeriod);
// subtract each Y value from the EMA's and create the new dataset (MACD)
for (var i = 0; i < shortEMA.length; i++) {
if (longEMA[i][1] == null) {
MACD.push( [xData[i] , null]);
} else {
MACD.push( [ xData[i] , (shortEMA[i][1] - longEMA[i][1]) ] );
}
}
// Set the Y and X data of the MACD. This is used in calculating the signal line.
for (var i = 0; i < MACD.length; i++) {
xMACD.push(MACD[i][0]);
yMACD.push(MACD[i][1]);
}
// Setting the signalline (Signal Line: X-day EMA of MACD line).
signalLine = EMA(xMACD, yMACD, signalPeriod);
// Setting the MACD Histogram. In comparison to the loop with pure MACD this loop uses MACD x value not xData.
for (var i = 0; i < MACD.length; i++) {
if (MACD[i][1] == null) {
histogram.push( [ MACD[i][0], null ] );
} else {
histogram.push( [ MACD[i][0], (MACD[i][1] - signalLine[i][1]) ] );
}
}
return [MACD, signalLine, histogram];
}
/**
* Calculating a linear trendline.
* The idea of a trendline is to reveal a linear relationship between
* two variables, x and y, in the "y = mx + b" form.
* @param yData : array of y variables.
* @param xData : array of x variables.
* @param periods : Only here for overloading purposes.
* @return an array containing the linear trendline.
**/
function linear (xData, yData, periods) {
var lineData = [],
step1,
step2 = 0,
step3 = 0,
step3a = 0,
step3b = 0,
step4 = 0,
step5 = 0,
step5a = 0,
step6 = 0,
step7 = 0,
step8 = 0,
step9 = 0;
// Step 1: The number of data points.
step1 = xData.length;
// Step 2: "step1" times the summation of all x-values multiplied by their corresponding y-values.
// Step 3: Sum of all x-values times the sum of all y-values. 3a and b are used for storing data.
// Step 4: "step1" times the sum of all squared x-values.
// Step 5: The squared sum of all x-values. 5a stores data.
// Step 6: Equation to calculate the slope of the regression line.
// Step 7: The sum of all y-values.
// Step 8: "step6" times the sum of all x-values (step5).
// Step 9: The equation for the y-intercept of the trendline.
for ( var i = 0; i < step1; i++) {
step2 = (step2 + (xData[i] * yData[i]));
step3a = (step3a + xData[i]);
step3b = (step3b + yData[i]);
step4 = (step4 + Math.pow(xData[i], 2));
step5a = (step5a + xData[i]);
step7 = (step7 + yData[i]);
}
step2 = (step1 * step2);
step3 = (step3a * step3b);
step4 = (step1 * step4);
step5 = (Math.pow(step5a, 2));
step6 = ((step2 - step3) / (step4 - step5));
step8 = (step6 * step5a);
step9 = ((step7 - step8) / step1);
// Step 10: Plotting the trendline. Only two points are calulated.
// The starting point.
// This point will have values equal to the first X and Y value in the original dataset.
lineData.push([xData[0] , yData[0]]);
// Calculating the ending point.
// The point X is equal the X in the original dataset.
// The point Y is calculated using the function of a straight line and our variables found.
step10 = ( ( step6 * xData[step1 - 1] ) + step9 );
lineData.push([ ( xData[step1 - 1] ), step10 ]);
return lineData;
}
/* Function based on the idea of an exponential moving average.
*
* Formula: EMA = Price(t) * k + EMA(y) * (1 - k)
* t = today, y = yesterday, N = number of days in EMA, k = 2/(2N+1)
*
* @param yData : array of y variables.
* @param xData : array of x variables.
* @param periods : The amount of "days" to average from.
* @return an array containing the EMA.
**/
function EMA (xData, yData, periods) {
var t,
y = false,
n = periods,
k = (2 / (n + 1)),
ema, // exponential moving average.
emLine = [],
periodArr = [],
length = yData.length,
pointStart = xData[0];
// loop through data
for (var i = 0; i < length; i++) {
// Add the last point to the period arr, but only if its set.
if (yData[i-1]) {
periodArr.push(yData[i]);
}
// 0: runs if the periodArr has enough points.
// 1: set currentvalue (today).
// 2: set last value. either by past avg or yesterdays ema.
// 3: calculate todays ema.
if (n == periodArr.length) {
t = yData[i];
if (!y) {
y = arrayAvg(periodArr);
} else {
ema = (t * k) + (y * (1 - k));
y = ema;
}
emLine.push([xData[i] , y]);
// remove first value in array.
periodArr.splice(0,1);
} else {
emLine.push([xData[i] , null]);
}
}
return emLine;
}
/* Function based on the idea of a simple moving average.
* @param yData : array of y variables.
* @param xData : array of x variables.
* @param periods : The amount of "days" to average from.
* @return an array containing the SMA.
**/
function SMA (xData, yData, periods) {
var periodArr = [],
smLine = [],
length = yData.length,
pointStart = xData[0];
// Loop through the entire array.
for (var i = 0; i < length; i++) {
// add points to the array.
periodArr.push(yData[i]);
// 1: Check if array is "filled" else create null point in line.
// 2: Calculate average.
// 3: Remove first value.
if (periods == periodArr.length) {
smLine.push([ xData[i] , arrayAvg(periodArr)]);
periodArr.splice(0,1);
} else {
smLine.push([ xData[i] , null]);
}
}
return smLine;
}
/* Function that returns average of an array's values.
*
**/
function arrayAvg (arr) {
var sum = 0,
arrLength = arr.length,
i = arrLength;
while (i--) {
sum = sum + arr[i];
}
return (sum / arrLength);
}
}(Highcharts));