DislikedHello programmers, The indicator below changes color when the MACD is above or below zero. {image} I would like it to be modified to change color when the lines cross, as shown below. {image} {image} {file}Ignored
Name itself says it as 'Predictor" -
It is using own logic/formula to predict convergence/divergence and if you change, it may break indicator itself.
double v1minus2divsgEMAplus1 = 1.0 - 2.0 / (SignalEMA + 1.0);
double v1minus2divSEMAplus1 = 1.0 - 2.0 / (SlowEMA + 1.0);
double v1minus2divFEMAplus1 = 1.0 - 2.0 / (FastEMA + 1.0);
double FEMAmSEMAt2 = 2 * (FastEMA - SlowEMA);
double FEMAp1tSEMAp1 = (FastEMA + 1.0)*(SlowEMA + 1.0);
1