Doesn't match mine either. It looks the same if the bands are set to 100% rather than 250%. I have dropped Ilganzo a PM. I hope he will reply here instead.Quote from jdollarr:
ilganzo, what are your settings for the Keltner channel? I put up the ES chart for that day and my chart does not look similar to yours, are you running a 24 hr chart?
You're right, my eSignal formula calculates bands using the average H-L. It doesn't have any multiplier to adjust the bands.Quote from FuturesTrader71:
Doesn't match mine either. It looks the same if the bands are set to 100% rather than 250%. I have dropped Ilganzo a PM. I hope he will reply here instead.
...
for(i = 0; i < nInputLength; i++) {
vHLC3 += (vHigh[i] + vLow[i] + vClose[i]) / 3;
vHminL += vHigh[i] - vLow[i];
}
vHLC3 /= nInputLength;
vHminL /= nInputLength;
return new Array(vHLC3 + vHminL, vHLC3, vHLC3 - vHminL);
}