PureBytes Links
Trading Reference Links
|
Hi xkono
Is this what you want?
{RSI Indicator}
A:=Input("Periods",2,99,10);
B:=P; {target data array}
U:=Wilders(If(B>Ref(B,-1),B-Ref(B,-1),0),A);
D:=Wilders(If(B<Ref(B,-1),Ref(B,-1)-B,0),A);
100-(100/(1+(U/D)));
Or this perhaps?
{RSI Indicator}
A:=Input("Periods",2,99,10);
U:=Wilders(If(C>Ref(C,-1),C-Ref(C,-1),0),A);
D:=Wilders(If(C<Ref(C,-1),Ref(C,-1)-C,0),A);
100-(100/(1+(U/D)));
Kind regards
Roy Larsen
www.metastocktips.co.nz
Free formulas and MS links
----- Original Message -----
From: "xkono03" <xkono03@xxxxxxxxxxx>
To: <Metastockusers@xxxxxxxxxxxxxxx>
Sent: Tuesday, March 22, 2005 5:42 AM
Subject: [Metastockusers] RSI
>
> Hi please can anyone advise me how can I create function of RSI in
> metastock?I know that indicator is implicity written like rsi
> (periods) but I need to know how to write bullish and bearish signal
> if RSI is near 70 or 30 line.
>
> Thanks a lot
>
>
>
>
> Yahoo! Groups Sponsor
> ADVERTISEMENT
>
>
>
>
>
> --------------------------------------------------------------------------------
> Yahoo! Groups Links
>
> a.. To visit your group on the web, go to:
> http://groups.yahoo.com/group/Metastockusers/
>
> b.. To unsubscribe from this group, send an email to:
> Metastockusers-unsubscribe@xxxxxxxxxxxxxxx
>
> c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
>
>
------------------------ Yahoo! Groups Sponsor --------------------~-->
Has someone you know been affected by illness or disease?
Network for Good is THE place to support health awareness efforts!
http://us.click.yahoo.com/Rcy2bD/UOnJAA/cosFAA/zMEolB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/Metastockusers/
<*> To unsubscribe from this group, send an email to:
Metastockusers-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|