[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Karnish systeem



PureBytes Links

Trading Reference Links

Bruce:

Nope, but you could probably write a separate system test that takes only
the second consecutive buy or sell signal.  That would actually be an
interesting test of this system.


----- Original Message -----
From: Bruce K. Anderson <bruceka@xxxxxxxx>
To: <metastock@xxxxxxxxxxxxx>
Sent: December 17, 1999 14:14
Subject: Re: Karnish systeem

Does MetaStock have a way to add positions when the indicator moves above
100 the second time?


----- Original Message -----
From: "Glen Wallace" <gcwallace@xxxxxxxx>
To: "MetaStock listserver" <metastock@xxxxxxxxxxxxx>
Sent: Friday, December 17, 1999 12:02 PM
Subject: Re: Karnish systeem

> CMA:
>
> Despite Steve's funny Detroit accent, I thought the description was pretty
> clear.  In any case, here's the MetaStock system test version:
>
> {EnterLong and Close Short}
> BBHistogram:= (CLOSE + 2*Std(CLOSE,20) -
>    Mov(CLOSE,20,SIMPLE)) / (4*(Std(CLOSE,20)))
>    * 100;
> Cross(0,BBHistogram)
>
> {Enter Short and Close Long}
> BBHistogram:= (CLOSE + 2*Std(CLOSE,20) -
>    Mov(CLOSE,20,SIMPLE)) / (4*(Std(CLOSE,20)))
>    * 100;
> Cross(BBHistogram,100)
>
> If I recall, he sets the system tester's testing options to enter and exit
> on the subsequent day's open, but you can try different variations to meet
> your own requirements.