[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Winning Systems



PureBytes Links

Trading Reference Links

> > 
> > 
> > > I've hunted everywhere for a description of "WILDERS" as 
described 
> > in AB and everywhere else on the net, for what it is. The
> > > closest I came to was "a modified moving average". 

the only thing that I know it is that 
wilders(c,14) is the same that:

wild:= (13 * PREV + C) / 14 ;
wild

or the same that:
n:=Input("period wilders",1,100,14);
Mov(C,(2*n)-1,E)

sc