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

Re: blast from the past....timebar code



PureBytes Links

Trading Reference Links

version 3.... this one only paints the first bar of the new period.

input: rotate(5);

if t <> t[1] then begin
  if mod(timetominutes(t),rotate) = 0 then begin
    plot1(h,"hi");
    plot2(l,"lo");
  end;
end;

-- 
   Dennis