// find Highest High
for (i = -(nLookback-1); i < 1; i++) {
if (HH == null) {
HH = high(i);
} else if (high(i) > HH) HH = high(i);
}
return HH;
}
Regards,
Jay F.
Product Manager
_____________________________________
Have a suggestion to improve our products?
Click Support --> Request a Feature in eSignal 11
Comment