This repository was archived by the owner on Feb 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
/
Copy pathvarPPO.js
136 lines (105 loc) · 3.22 KB
/
varPPO.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
// helpers
var _ = require('lodash');
var log = require('../core/log');
// configuration
var config = require('../core/util').getConfig();
var settings = config.varPPO;
var momentum = settings.momentum;
var momentumName = momentum.toLowerCase();
var momentumSettings = config[momentum];
// let's create our own method
var method = {};
// prepare everything our method needs
method.init = function() {
this.trend = {
direction: 'none',
duration: 0,
persisted: false,
adviced: false
};
this.requiredHistory = this.tradingAdvisor.historySize;
// define the indicators we need
this.addIndicator('ppo', 'PPO', config.PPO);
this.addIndicator(momentumName, momentum, momentumSettings);
}
// what happens on every new candle?
method.update = function(candle) {
// nothing!
}
// for debugging purposes log the last
// calculated parameters.
method.log = function(candle) {
var digits = 8;
var ppo = this.indicators.ppo.result;
var result = ppo.ppo;
var signal = ppo.PPOsignal;
var hist = ppo.PPOhist;
var momentumResult = this.indicators[momentumName][momentumName];
log.debug('\t', 'PPO:', result.toFixed(digits));
log.debug('\t', 'PPOsignal:', signal.toFixed(digits));
log.debug('\t', 'PPOhist:', hist.toFixed(digits));
log.debug('\t', momentum + ':', momentumResult.toFixed(digits));
log.debug('\t', 'price:', candle.close.toFixed(digits));
}
method.check = function() {
var ppo = this.indicators.ppo.result;
var hist = ppo.PPOhist;
var value = this.indicators[momentumName][momentumName];
var thresholds = {
low: momentumSettings.thresholds.low + hist * settings.thresholds.weightLow,
high: momentumSettings.thresholds.high + hist * settings.thresholds.weightHigh
};
if(value < thresholds.low) {
// new trend detected
if(this.trend.direction !== 'up')
this.trend = {
duration: 0,
persisted: false,
direction: 'up',
adviced: false
};
this.trend.duration++;
log.debug('In uptrend since', this.trend.duration, 'candle(s)');
if(this.trend.duration >= settings.thresholds.persistence)
this.trend.persisted = true;
if(this.trend.persisted && !this.trend.adviced) {
this.trend.adviced = true;
this.advice('long');
} else
this.advice();
} else if(value > thresholds.high) {
// new trend detected
if(this.trend.direction !== 'down')
this.trend = {
duration: 0,
persisted: false,
direction: 'down',
adviced: false
};
this.trend.duration++;
log.debug('In downtrend since', this.trend.duration, 'candle(s)');
if(this.trend.duration >= settings.thresholds.persistence)
this.trend.persisted = true;
if(this.trend.persisted && !this.trend.adviced) {
this.trend.adviced = true;
this.advice('short');
} else
this.advice();
} else {
log.debug('In no trend');
// we're not in an up nor in a downtrend
// but for now we ignore sideways trends
//
// read more @link:
//
// https://github.com/askmike/gekko/issues/171
// this.trend = {
// direction: 'none',
// duration: 0,
// persisted: false,
// adviced: false
// };
this.advice();
}
}
module.exports = method;