PureBytes Links
Trading Reference Links
|
Williams' %R
This formula calculates the Williams %R indicator. Notice that the
formula is inverted by multiplying it by -100.
NumPeriods:= Input("Enter the number of periods:",3,50,14);
((HHV(H,NumPeriods) - C)/(HHV(H,NumPeriods) - LLV(L,NumPeriods))) *
-100;
The above is from the Help file. Hope it does help.
RSB
> Wooglin wrote:
>
> Does anyone know how the William's %R is computed. That is, what are
> the variables and the formula.
>
> Thanks,
>
> Jim Barone
>
|