Page 1 of 1

HiLo

PostPosted: Tue Oct 02, 2012 7:41 am
by Apprentice
Hilo.png

Thisi indicator counts the number of consecutive Higher Highs, or , Lower Lows Bars.
if high[period] > high[period-1] then
HigerHighsCount[period] = HigerHighsCount[period-1] +1;
else
HigerHighsCount[period] =0
end

if low[period] < low[period-1] then
LowerLows[period] = LowerLows[period-1] +1;
else
LowerLowsCount[period] =0
end

HiLo.lua
(1.59 KiB) Downloaded 718 times


The indicator was revised and updated

Re: HiLo

PostPosted: Mon Oct 27, 2014 10:41 am
by Alexander.Gettinger
MQL4 version of HiLo oscillator: viewtopic.php?f=38&t=61385.

Re: HiLo

PostPosted: Tue Jun 27, 2017 3:26 am
by Apprentice
The indicator was revised and updated.