All,
Got the New Active Trader Mag and tested out this simple system on the e-mini, very impressed, the draw downs were a bit much for me but you can easily add to this system to lower them. Here is the system as I got it off of the activetrader.com site.
Posting the link cause I'm sure they would appreciate the traffic and no I don't work for them:
http://www.activetradermag.com/code.htm#dec02
December 2002 Edition
MetaStock code for "Give your system a KISS" by Mark Seleznov on p. 38.
Enter long C>(Ref(HHV(H,1),-1)*(1.005))
Close long C<(Ref(LLV(L,1),-1)*(1.005))
Enter short C<(Ref(LLV(L,1),-1)*(1.005))
Close short C>(Ref(HHV(H,1),-1)*(1.005))
I don't have metastock so recoded it for amibroker
Filter=TimeNum()>093400 AND TimeNum()<=155500;
PositionSize=2500;
Buy=Filter AND C>(Ref(HHV(H,1),-1)*(1.005)) ;
Sell=C<(Ref(LLV(L,1),-1)*(1.005)) OR TimeNum()>155500;
Short=Filter AND C<(Ref(LLV(L,1),-1)*(1.005));
Cover=C>(Ref(HHV(H,1),-1)*(1.005))OR TimeNum()>155500;
My code takes you out at the end of day, I don't like overnights
I'll post some stats in a few
I was hoping that since this code is freely available to the public that we could all work on it together to try and improve it, especially from the drawdown perspective.
Lets have some fun with this

wdbaker
Got the New Active Trader Mag and tested out this simple system on the e-mini, very impressed, the draw downs were a bit much for me but you can easily add to this system to lower them. Here is the system as I got it off of the activetrader.com site.
Posting the link cause I'm sure they would appreciate the traffic and no I don't work for them:
http://www.activetradermag.com/code.htm#dec02
December 2002 Edition
MetaStock code for "Give your system a KISS" by Mark Seleznov on p. 38.
Enter long C>(Ref(HHV(H,1),-1)*(1.005))
Close long C<(Ref(LLV(L,1),-1)*(1.005))
Enter short C<(Ref(LLV(L,1),-1)*(1.005))
Close short C>(Ref(HHV(H,1),-1)*(1.005))
I don't have metastock so recoded it for amibroker
Filter=TimeNum()>093400 AND TimeNum()<=155500;
PositionSize=2500;
Buy=Filter AND C>(Ref(HHV(H,1),-1)*(1.005)) ;
Sell=C<(Ref(LLV(L,1),-1)*(1.005)) OR TimeNum()>155500;
Short=Filter AND C<(Ref(LLV(L,1),-1)*(1.005));
Cover=C>(Ref(HHV(H,1),-1)*(1.005))OR TimeNum()>155500;
My code takes you out at the end of day, I don't like overnights
I'll post some stats in a few
I was hoping that since this code is freely available to the public that we could all work on it together to try and improve it, especially from the drawdown perspective.
Lets have some fun with this

wdbaker