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

Re: Tick bar chart question



PureBytes Links

Trading Reference Links

input:rotate(3);
var:go(0),new(0);
if d>d[1]or currentbar=1 then begin
if go=0 then go=1 else go=0;
new=timetominutes(sess1starttime)+rotate;end;
if timetominutes(t)>new then begin
if go=0 then go=1 else go=0;
new=new+rotate;
end;
if go=1 then begin
plot1(h,"time");
plot2(l,"rotate");
end;