PureBytes Links
Trading Reference Links
|
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
------------------------ Yahoo! Groups Sponsor ---------------------~-->
New Yahoo! Mail Plus. More flexibility. More control. More power.
Get POP access, more storage, more filters, and more.
http://us.click.yahoo.com/Hcb0iA/P.iFAA/46VHAA/zMEolB/TM
---------------------------------------------------------------------~->
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/
|