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

[RT] Re: Sup/Res indicator



PureBytes Links

Trading Reference Links

OOPS.... spotted a typo.

{look for a new pivot}
if swinglowbar(1,low,stren,stren+1)=stren then begin
  sl4 = sl3;
  sl3 = sl3; <<<<<<<<<<<------------WRONG
  sl2 = sl1;
  sl1 = low[stren];
end;

should be

{look for a new pivot}
if swinglowbar(1,low,stren,stren+1)=stren then begin
  sl4 = sl3;
  sl3 = sl2;
  sl2 = sl1;
  sl1 = low[stren];
end;

-- 
  Dennis