PureBytes Links
Trading Reference Links
|
months ago on an AT forum I found this..it should be the aberration's code.
Verify if You're interested
Inputs: Length(35), StdDevUp(2.0), StdDevDn(-2.0);
Vars: UpBand(0), DnBand(0), Ave(0);
UpBand = BollingerBand(Close,Length,StdDevUp);
DnBand = BollingerBand(Close,Length,StdDevDn);
Ave = Average(Close,Length);
if ( MarketPosition = 0 ) and ( Close > UpBand )
then Buy("BE") tomorrow at market; { Enter Long }
if ( MarketPosition = 0 ) and ( Close < DnBand )
then Sell("SE") tomorrow at market; { Enter Short }
if ( MarketPosition = 1 ) and ( Close < Ave )
then ExitLong("LX") today at close; { Exit Short }
if ( MarketPosition = -1 ) and ( Close > Ave )
then ExitShort("SX") today at close; { Exit Long }
{ Print ( File("k:\aberatn.eqy"), Date:6:0,
(OpenPositionProfit + GrossProfit + GrossLoss):6:2 ); }
----- Original Message -----
From: "Jim Johnson" <jejohn@xxxxxxxxxxxxxxxx>
To: <omega-list@xxxxxxxxxx>
Sent: Friday, February 22, 2002 1:55 PM
Subject: I Master Trading System
> Hello omega-list,
>
> Anyone have experience with a trading system developed by Murray
> Ruggerio and co-marketed with Keith Fitchen (Abberation ;
> www.trade-system.com). It trades mainly SP and ND, stop and reverse
> with most trades 2-3 days long. As I understand it, a kind of
> adaptive open range breakout method, no stops, exit on close etc.
> Sells for $2000 (for previous customers).
>
> If so, pls contact me privately or on the list. Thanks.
>
>
>
>
> --
> Best regards,
> Jim Johnson mailto:jejohn@xxxxxxxxxxxxxxxx
>
>
|