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