door mvs » ma 19 dec 2005, 20:01
Verwacht er niet te veel van. Er wordt een MA 5 en MA 8 gebruikt voor de aankoop beslissen. de 5 boven de 8 is kopen v.v.
Alleen voor intraday grafiek (ivm handelstijd tussen 9 en 12 uur)
value function PlukdeDag (value xMabar1= 5, value xMabar2=8, value xStop=1.5) begin
If marketposition = 0 then begin
If time >0900 and time <1200 and vma(c,xMabar1) > vma(c,xMabar2)then buy next bar at market;
If time >0900 and time <1200 and vma(c,xMabar1) < vma(c,xMabar2)then sell next bar at market;
end;
If marketposition= 1 then begin
If Low < (highest(high,barssinceentry)[1]-xStop) then exitlong;
plot1((highest(high,barssinceentry)[1]-xStop),'stop');
end;
If marketposition= -1 then begin
If high > (lowest(low,barssinceentry)[1]+xStop) then exitshort;
Plot2((lowest(low,barssinceentry)[1]+xStop),"stop");
end;
end;