PureBytes Links
Trading Reference Links
|
Roy,
thanks a lot. If you ever think about writting a book about MS Coding
count me on the first buyers.
have a nice day
--- In Metastockusers@xxxxxxxxxxxxxxx, "Roy Larsen" <rlarsen@xxxx>
wrote:
> trend2trader
>
> > Another idea would be that a condition needs to be meet n-
consecutive
> > times, i.e. the rsi cross > 30 and trading n-consecutive times
above
> > 30 before giving the signal?
> >
> > thanks in advance
>
> For MS 7.03 and below.
>
> N:=5;
> A:=Alert(Cross(RSI(14),30),N);
> B:=RSI(14)>30;
> Sum(A AND B,N)=N;
>
> For MS 7.20 and above
>
> N:=5;
> A:=Alert(Cross(RSI(C,14),30),N);
> B:=RSI(C,14)>30;
> Sum(A AND B,N)=N;
>
> Roy
To unsubscribe from this group, send an email to:
Metastockusers-unsubscribe@xxxxxxxxxxx
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|