[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Every third high / low



PureBytes Links

Trading Reference Links

At 03:34 PM 1/19/2006, you wrote:

>For 2Ki, anyone have an Indicator, that they would share, that connects
>every third high?  every third low?

Do you mean like:

if Mod(CurrentBar, 3) = 1 then begin
   Plot1(High, "H");
   Plot2(Low, "L");
end;

Bob Fulks