| 
 PureBytes Links 
Trading Reference Links 
 | 
Maurizio,
This is one interpreted from the Traders Tips Amibroker version of 
the indicator. I cannot vouch for its accuracy.
Preston
{ARSI}
{Asymetrical RSI formula}
{TASC OCT 2008 Vervoort}
{Amibroker Version 1.coded for Metastock}
{constant period version (looks into the future)}
Period:= Input("ARSI Period",1,100,14);
Chg:=C-Ref(C,-1);
UpCount:=Sum(Chg >= 0,Period);
DnCount:=Period - UpCount;
UpMove:=Mov(Max(Chg,0),LastValue(UpCount)*2-1,E);
DnMove:=Mov(Max(-Chg,0),LastValue(DnCount)*2-1,E);
RS:=UpMove/DnMove;
ARSI:=100-(100/(1+RS));
ARSI;
--- In equismetastock@xxxxxxxxxxxxxxx, pumrysh <no_reply@xxx> wrote:
>
> Maurizio,
> 
> It is not available online yet. As soon as it goes online or I 
receive 
> my copy of the magazine I will post it here for you.
> 
> Preston
> 
> 
> 
> --- In equismetastock@xxxxxxxxxxxxxxx, "maurizio_innamorati" 
> <maurizio.innamorati@> wrote:
> >
> > Could somebody reproduce the formula for the Asymmetrical RSI 
> published 
> > in the October 2008 TASC?
> > Thanks
> >
>
------------------------------------
Yahoo! Groups Links
<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/equismetastock/
<*> Your email settings:
    Individual Email | Traditional
<*> To change settings online go to:
    http://groups.yahoo.com/group/equismetastock/join
    (Yahoo! ID required)
<*> To change settings via email:
    mailto:equismetastock-digest@xxxxxxxxxxxxxxx 
    mailto:equismetastock-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
    equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 |