-
Notifications
You must be signed in to change notification settings - Fork 0
/
overlays.go
487 lines (390 loc) · 11.3 KB
/
overlays.go
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
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
// Package tango provides types and functions to calculate values of various
// market indicators.
package tango
import (
"errors"
"math"
"github.com/shopspring/decimal"
)
// BB holds all the necessary information needed to calculate Bollinger Bands.
// The zero value is not usable.
type BB struct {
// valid specifies whether BB paremeters were validated.
valid bool
// stdDev specifies how to adjust standard deviation.
stdDev decimal.Decimal
// ma specifies MA indicator configuration.
ma MA
}
// NewBB validates provided configuration options and creates
// new BB indicator.
func NewBB(mat MAType, stdDev decimal.Decimal, length int) (BB, error) {
ma, err := NewMA(mat, length)
if err != nil {
return BB{}, err
}
bb := BB{
stdDev: stdDev,
ma: ma,
}
if err := bb.validate(); err != nil {
return BB{}, err
}
return bb, nil
}
func (bb *BB) validate() error {
if bb.stdDev.Cmp(decimal.Zero) <= 0 {
return errors.New("invalid standard deviation")
}
bb.valid = true
return nil
}
// Calc calculates all BB values from provided data points slice.
// Calculation is based on formula provided by investopedia.
// https://www.investopedia.com/terms/b/bollingerbands.asp.
// All credits are due to John Bollinger who developed BB indicator.
func (bb BB) Calc(dd []decimal.Decimal) (
upper decimal.Decimal,
lower decimal.Decimal,
width decimal.Decimal,
err error,
) {
res, sdev, err := bb.calc(dd)
if err != nil {
return decimal.Zero, decimal.Zero, decimal.Zero, err
}
return bb.calcUpper(res, sdev), bb.calcLower(res, sdev), bb.calcWidth(res, sdev), nil
}
// CalcBand calculates specified BB value from provided data points slice.
// Calculation is based on formula provided by investopedia.
// https://www.investopedia.com/terms/b/bollingerbands.asp.
// All credits are due to John Bollinger who developed BB indicator.
func (bb BB) CalcBand(dd []decimal.Decimal, band Band) (decimal.Decimal, error) {
if err := band.Validate(); err != nil {
return decimal.Zero, err
}
res, sdev, err := bb.calc(dd)
if err != nil {
return decimal.Zero, err
}
switch band {
case BandUpper:
return bb.calcUpper(res, sdev), nil
case BandLower:
return bb.calcLower(res, sdev), nil
default: // BB is validated, only BandWidth is left.
return bb.calcWidth(res, sdev), nil
}
}
func (bb BB) calc(dd []decimal.Decimal) (
ma decimal.Decimal,
sdev decimal.Decimal,
err error,
) {
if !bb.valid {
return decimal.Zero, decimal.Zero, ErrInvalidIndicator
}
if len(dd) != bb.Count() {
return decimal.Zero, decimal.Zero, ErrInvalidDataSize
}
ma, err = bb.ma.Calc(dd)
if err != nil {
// unlikely to happen
return decimal.Zero, decimal.Zero, err
}
sdev = StandardDeviation(dd).Mul(bb.stdDev)
return ma, sdev, nil
}
func (bb BB) calcUpper(res, sdev decimal.Decimal) decimal.Decimal {
return res.Add(sdev)
}
func (bb BB) calcLower(res, sdev decimal.Decimal) decimal.Decimal {
return res.Sub(sdev)
}
func (bb BB) calcWidth(res, sdev decimal.Decimal) decimal.Decimal {
return res.Add(sdev).Sub(res.Sub(sdev)).Div(res).Mul(_hundred)
}
// Count determines the total amount of data points needed for BB
// calculation.
func (bb BB) Count() int {
return bb.ma.Count()
}
// DEMA holds all the necessary information needed to calculate
// double exponential moving average.
// The zero value is not usable.
type DEMA struct {
// valid specifies whether DEMA paremeters were validated.
valid bool
// ema specifies what ema should be used for dema calculations.
ema EMA
}
// NewDEMA validates provided configuration options and creates
// new DEMA indicator.
func NewDEMA(length int) (DEMA, error) {
ema, err := NewEMA(length)
if err != nil {
return DEMA{}, err
}
return DEMA{
valid: true,
ema: ema,
}, nil
}
// Calc calculates DEMA from the provided data points slice.
// Calculation is based on formula provided by investopedia.
// https://www.investopedia.com/terms/d/double-exponential-moving-average.asp.
// All credits are due to Patrick Mulloy who developed DEMA indicator.
func (dema DEMA) Calc(dd []decimal.Decimal) (decimal.Decimal, error) {
if !dema.valid {
return decimal.Zero, ErrInvalidIndicator
}
if len(dd) != dema.Count() {
return decimal.Zero, ErrInvalidDataSize
}
pres := make([]decimal.Decimal, dema.ema.sma.length)
var err error
pres[0], err = dema.ema.sma.Calc(dd[:dema.ema.sma.length])
if err != nil {
// unlikely to happen
return decimal.Zero, err
}
for i := dema.ema.sma.length; i < len(dd); i++ {
pres[i-dema.ema.sma.length+1], err = dema.ema.CalcNext(pres[i-dema.ema.sma.length], dd[i])
if err != nil {
// unlikely to happen
return decimal.Zero, err
}
}
res := pres[0]
for i := 0; i < len(pres); i++ {
res, err = dema.ema.CalcNext(res, pres[i])
if err != nil {
// unlikely to happen
return decimal.Zero, err
}
}
return res, nil
}
// Count determines the total amount of data points needed for DEMA
// calculation.
func (dema DEMA) Count() int {
return dema.ema.Count()
}
// EMA holds all the necessary information needed to calculate exponential
// moving average.
// The zero value is not usable.
type EMA struct {
// valid specifies whether DEMA paremeters were validated.
valid bool
// sma specifies what sma should be used for ema calculations.
sma SMA
}
// NewEMA validates provided configuration options and
// creates new EMA indicator.
func NewEMA(length int) (EMA, error) {
sma, err := NewSMA(length)
if err != nil {
return EMA{}, err
}
return EMA{
valid: true,
sma: sma,
}, nil
}
// Calc calculates EMA from the provided data points slice.
// Calculation is based on formula provided by investopedia.
// https://www.investopedia.com/terms/e/ema.asp.
func (ema EMA) Calc(dd []decimal.Decimal) (decimal.Decimal, error) {
if !ema.valid {
return decimal.Zero, ErrInvalidIndicator
}
if len(dd) != ema.Count() {
return decimal.Zero, ErrInvalidDataSize
}
res, err := ema.sma.Calc(dd[:ema.sma.length])
if err != nil {
// unlikely to happen
return decimal.Zero, err
}
for i := ema.sma.length; i < len(dd); i++ {
res, err = ema.CalcNext(res, dd[i])
if err != nil {
// unlikely to happen
return decimal.Zero, err
}
}
return res, nil
}
// CalcNext calculates sequential EMA by using previous EMA.
func (ema EMA) CalcNext(lres, dec decimal.Decimal) (decimal.Decimal, error) {
if !ema.valid {
return decimal.Zero, ErrInvalidIndicator
}
mtp := ema.multiplier()
return dec.Mul(mtp).Add(lres.Mul(decimal.NewFromInt(1).Sub(mtp))), nil
}
// multiplier calculates EMA multiplier.
func (ema EMA) multiplier() decimal.Decimal {
return decimal.NewFromInt(2).Div(decimal.NewFromInt(int64(ema.sma.length) + 1))
}
// Count determines the total amount of data points needed for EMA
// calculation.
func (ema EMA) Count() int {
return ema.sma.length*2 - 1
}
// HMA holds all the necessary information needed to calculate
// hull moving average.
// The zero value is not usable.
type HMA struct {
// valid specifies whether HMA paremeters were validated.
valid bool
// wma specifies the base moving average.
wma WMA
}
// NewHMA validates provided configuration options and
// creates new HMA indicator.
func NewHMA(length int) (HMA, error) {
wma, err := NewWMA(length)
if err != nil {
return HMA{}, err
}
return HMA{
valid: true,
wma: wma,
}, nil
}
// Calc calculates HMA from the provided data points slice.
// Calculation is based on formula provided by fidelity.
// https://www.fidelity.com/learning-center/trading-investing/technical-analysis/technical-indicator-guide/hull-moving-average.
// All credits are due to Alan Hull who developed HMA indicator.
func (h HMA) Calc(dd []decimal.Decimal) (decimal.Decimal, error) {
if !h.valid {
return decimal.Zero, ErrInvalidIndicator
}
if len(dd) != h.Count() {
return decimal.Zero, ErrInvalidDataSize
}
wma1 := WMA{length: h.wma.length / 2, valid: true}
wma2 := WMA{length: int(math.Sqrt(float64(h.wma.length))), valid: true}
res := make([]decimal.Decimal, wma2.length)
for i := 0; i < wma2.length; i++ {
res1, err := wma1.Calc(dd[i : wma1.length+i])
if err != nil {
// unlikely to happen
return decimal.Zero, err
}
res2, err := h.wma.Calc(dd[i : h.wma.length+i])
if err != nil {
// unlikely to happen
return decimal.Zero, err
}
res[i] = res1.Mul(decimal.NewFromInt(2)).Sub(res2)
}
return wma2.Calc(res)
}
// Count determines the total amount of data points needed for HMA
// calculation.
func (h HMA) Count() int {
return int(math.Sqrt(float64(h.wma.length))) + h.wma.length - 1
}
// SMA holds all the necessary information needed to calculate simple
// moving average.
// The zero value is not usable.
type SMA struct {
// valid specifies whether SMA paremeters were validated.
valid bool
// length specifies how many data points should be used
// during the calculations.
length int
}
// NewSMA validates provided configuration options and
// creates new SMA indicator.
func NewSMA(length int) (SMA, error) {
sma := SMA{
length: length,
}
if err := sma.validate(); err != nil {
return SMA{}, err
}
return sma, nil
}
// validate checks whether the indicator has valid configuration properties.
func (sma *SMA) validate() error {
if sma.length < 1 {
return ErrInvalidLength
}
sma.valid = true
return nil
}
// Calc calculates SMA from the provided data points slice.
// Calculation is based on formula provided by investopedia.
// https://www.investopedia.com/terms/s/sma.asp.
func (sma SMA) Calc(dd []decimal.Decimal) (decimal.Decimal, error) {
if !sma.valid {
return decimal.Zero, ErrInvalidIndicator
}
if len(dd) != sma.Count() {
return decimal.Zero, ErrInvalidDataSize
}
res := decimal.Zero
for i := 0; i < len(dd); i++ {
res = res.Add(dd[i])
}
return res.Div(decimal.NewFromInt(int64(sma.length))), nil
}
// Count determines the total amount of data points needed for SMA
// calculation.
func (sma SMA) Count() int {
return sma.length
}
// WMA holds all the necessary information needed to calculate weighted
// moving average.
// The zero value is not usable.
type WMA struct {
// valid specifies whether WMA paremeters were validated.
valid bool
// length specifies how many data points should be used
// during the calculations.
length int
}
// NewWMA validates provided configuration options and
// creates new WMA indicator.
func NewWMA(length int) (WMA, error) {
wma := WMA{
length: length,
}
if err := wma.validate(); err != nil {
return WMA{}, err
}
return wma, nil
}
// validate checks whether the indicator has valid configuration properties.
func (wma *WMA) validate() error {
if wma.length < 1 {
return ErrInvalidLength
}
wma.valid = true
return nil
}
// Calc calculates WMA from the provided data points slice.
// Calculation is based on formula provided by investopedia.
// https://www.investopedia.com/articles/technical/060401.asp.
func (wma WMA) Calc(dd []decimal.Decimal) (decimal.Decimal, error) {
if !wma.valid {
return decimal.Zero, ErrInvalidIndicator
}
if len(dd) != wma.Count() {
return decimal.Zero, ErrInvalidDataSize
}
res := decimal.Zero
weight := decimal.NewFromInt(int64(wma.length * (wma.length + 1))).Div(decimal.NewFromInt(2))
for i := 0; i < len(dd); i++ {
res = res.Add(dd[i].Mul(decimal.NewFromInt(int64(i + 1)).Div(weight)))
}
return res, nil
}
// Count determines the total amount of data points needed for WMA
// calculation.
func (wma WMA) Count() int {
return wma.length
}