Kendim kullandığım daha çok orta vadeli çalışan bir sistem “Breakout”tur.
Bu sistem Jose Silva tarafından geliştirilmiştir.
Yatayda bolca çarpılır, trendi güzel yakalar.
MS ‘ ta Indıcator Builder bölümüne BREAKOUT ismi ile aşağıdaki formülü kaydedin:
{ Plots breakout long/short signals }
{ http://www.metastocktools.com }
{ With thanks to Roy Larsen for Init idea }
pds1:=Input(“HHV (long) breakout periods”,
1,252,21);
pds2:=Input(“LLV (short) breakout periods”,
1,252,10);
display:=Input(“display: signals=1, in-trade binary=2″,1,2,1);
x:=Input(“use Open=1 High=2 Low=3 Close=4 Volume=5 P=6″,1,6,4);
delay:=Input(“Entry and Exit delay”,0,3,0);
x:=If(x=1,O,If(x=2,H,If(x=3,L,If(x=5,V,If(x=6,P,C) ))));
In:=x>Ref(HHV(x,pds1),-1);
Out:=x<Ref(LLV(x,pds2),-1);
.
.
.
Konunun devamı için buraya tıklayınız….
Forumun kullanımı ve üyeliği tamamen ücretsizdir.