PureBytes Links
Trading Reference Links
|
Daniele
Try this.
{Wilders Smoothing}
A:=Input("Periods",1,99,10);
B:=P; {target data array - usually CLOSE}
R:=1/A;
X:=If(Cum(1)<=A,Mov(B,A,S),PREV*(1-R)+B*R);
If(Mov(B,A,S)>0,X,X);
Roy
> Anyone can help me to describe a formula to calculate Wilder's
> smoothing function?
> Sorry for my poor English.
>
> Bye
> Daniele
>
>
> 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/
>
>
>
>
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/
|