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

Re: Highest High Ever!



PureBytes Links

Trading Reference Links

forgot the code :-)

input: old_high(0);
var: hh(0);

if currentbar = 1 then begin
  hh = maxlist(highest(h,maxbarsback),old_high);
end else begin
  if h > hh then hh = h;
end;

-- 
   Dennis