Returns the series or values of the GET Williams %R study.Syntax
The Williams %R is a momentum indicator that measures overbought/oversold levels. It was developed by Larry Williams.
AGet.williamsPercentR( Length [, sym() | inv() ][, BarIndex ] )Parameters
Parameter: Description: Default:
n/a sym() | inv() [Optional] Function of sym() or inv() to determine symbol/interval source for the study.
Base sym/int BarIndex [Optional] Bar index of series to retrieve.
n/a
Return Value(s)
Returns a Series Object whennBarIndex is not specified.
Returns a single value when nBarIndex is specified.Notes
Only available in versions 11.8 or later.Code Example
Creating Series Example:See Also
var bInit = false;var xSer = null;function main(){ if(bInit == false){ xSer = getSeries(AGet.williamsPercentR(14)); bInit = true; }; return xSer;}
Advanced GET Study Functions