Profile Trend March 2008
vars: vwap1(0), close1(0), aa(0), bb(0), cc(0), firstbar(0), length(0);
if time=700 then aa=vwap_h;
if time=730 then bb=vwap_h;
cc=(aa+bb)/2;
if date>date[1] then begin firstbar=currentbar;
end;
length=currentbar-firstbar;
value1=h-aa;
value2=l-aa;
condition1=((h+l)/2)>cc;
condition2=((h+l)/2)
if condition1 and time>700 and time<1315 then
plot1(value1,"cc");
if condition2 and time>700 and time<1315 then
plot2(value2,"cc");
if time>829 and condition1 then
setplotcolor(1,green);
if time>829 and condition2 then
setplotcolor(2,red);
if time<829 then
setplotcolor(1,white);
if time<829 then
setplotcolor(2,white);
if time<829 then
setplotwidth(1,1);
if time<829 then
setplotwidth(2,1);
if time>829 and time<1300 then
setplotwidth(1,3);
if time>829 and time<1300 then
setplotwidth(2,3);
plot12(0,"0");
{if value1>0 then begin
setplotwidth(1,4);
end;}
if time=1300 then begin
setplotwidth(1,4);
end;
if time=1300 then begin
setplotwidth(2,4);
end;
Market Profile Momentum
vars: vwap1(0), close1(0), aa(0), cc(0), firstbar(0), length(0);
if time=1315 then vwap1=vwap_h;
if time=1315 then close1=c;
condition1=highestbar(h,1 2)condition2=lowestbar(l, 12)
aa=vwap_h;
if date>date[1] then begin firstbar=currentbar;
end;
length=currentbar-firstbar;
value8=10;
value10=(highest(h,5)-lowest(aa,13))/value8;
value11=(lowest(l,5)-highest(aa,13))/value8;
if time=1300 and condition1 then
plot1(value10,"cc");
if time=1300 and condition2 then
plot1(value11,"cc");
plot4(2,"2");
plot5(-2,"-2");
if condition1 then
setplotcolor(1,green)
else
setplotcolor(1,red);
plot12(0,"0");
if condition1 and value10>1.8 then begin
setplotwidth(1,4);
end;
if condition2 and value11<-1.8 then begin
setplotwidth(1,4);
end;
value20=Highd(0)-Highd(1);
if time>629 and time<=900
and
value20>0
then
plot20(0.5,"Highs");
value21=lowd(0)-lowd(1);
if time>629 and time<=900
and
value21<0
then
plot21(-0.5,"Lows");
setplotcolor(20, white);
setplotcolor(21, white);
little problem when i compiled it if some one can fix it ?
thanks