PureBytes Links
Trading Reference Links
|
You have to define the values for the opts. Don't know the system.
Can't help with that.
ANTI Trigger Trading System
Enter long :
setbars:=opt1{3};
entryadd:=opt2{1};
ff:=mov(stoch(7,1),3,e);
ss:=mov(Mov(Stoch(10,1),3,E),3,e);
cbuy:=if(ff<=ref(ff,-1) and ss>=ref(ss,-1),cum(1),0);
bbuy:=if(cbuy>=setbars,H+entryadd, 99999);
bbuy<99999
Exit long :
setbars:=opt1{3};
entryadd:=opt2{1};
exitadd:=opt3{1};
ff:=mov(stoch(7,1),3,e);
ss:=mov(Mov(Stoch(10,1),3,E),3,e);
cbuy:=if(ff<=ref(ff,-1) and ss>=ref(ss,-1),cum(1),0);
bbuy:=if(cbuy>=setbars,H+entryadd, 99999);
lxstop:=if(ref(bbuy,-1)<99999 and h>=ref(bbuy,-1),l-exitadd,l);
c<=lxstop
Enter short :
setbars:=opt1{3};
entryadd:=opt2{1};
ff:=mov(stoch(7,1),3,e);
ss:=mov(Mov(Stoch(10,1),3,E),3,e);
csell:=if(ff>=ref(ff,-1) and ss<=ref(ss,-1),cum(1),0);
ssell:=if(csell>=setbars,l-entryadd,0);
ssell>0
Exit short :
setbars:=opt1{3};
exitadd:=opt3{1};
entryadd:=opt2{1};
ff:=mov(stoch(7,1),3,e);
ss:=mov(Mov(Stoch(10,1),3,E),3,e);
csell:=if(ff>=ref(ff,-1) and ss<=ref(ss,-1),cum(1),0);
ssell:=if(csell>=setbars,l-entryadd,0);
sxstop:=if(ref(ssell,-1)>0 and l<=ref(ssell,-1),h+exitadd,h);
c>=sxstop
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Free shipping on all inkjet cartridge & refill kit orders to US & Canada. Low prices up to 80% off. We have your brand: HP, Epson, Lexmark & more.
http://www.c1tracking.com/l.asp?cid=5510
http://us.click.yahoo.com/GHXcIA/n.WGAA/ySSFAA/BefplB/TM
---------------------------------------------------------------------~->
To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|