WPR(TTR)
WPR()所属R语言包:TTR
William's %R
威廉的%R
译者:生物统计家园网 机器人LoveR
描述----------Description----------
William's % R.
威廉的%R
用法----------Usage----------
WPR(HLC, n=14)
参数----------Arguments----------
参数:HLC
Object that is coercible to xts or matrix and contains High-Low-Close prices. If only a univariate series is given, it will be used. See details.
XTS或矩阵转换成的对象包含高 - 低 - 收盘价。如果只有一个单变量序列是,它将被使用。查看详细信息。
参数:n
Number of periods to use.
期间使用的数量。
Details
详细信息----------Details----------
If an High-Low-Close series is provided, the indicator is calculated using the high/low values. If a vector is provided, the calculation only uses that series.
如果提供了一个高 - 低 - 关闭的系列,该指标的计算使用的高/低的值。如果提供一个向量,计算仅使用该系列。
值----------Value----------
A object of the same class as HLC or a vector (if try.xts fails) containing the William's %R values.
HLC或向量(try.xts如果失败),威廉的%R值相同的类的一个对象。
注意----------Note----------
The William's %R calculation is similar to stochastics' fast %K.
威廉的%R计算是类似随机的快速%K
(作者)----------Author(s)----------
Joshua Ulrich
参考文献----------References----------
http://www.fmlabs.com/reference/WilliamsR.htm<br> http://www.equis.com/Customer/Resources/TAAZ?c=3&p=126<br> http://linnsoft.com/tour/techind/willR.htm<br> http://stockcharts.com/education/IndicatorAnalysis/indic_williamsR.html<br>
参见----------See Also----------
See stoch.
见stoch。
实例----------Examples----------
data(ttrc)
stochOsc <- stoch(ttrc[,c("High","Low","Close")])
stochWPR<- WPR(ttrc[,c("High","Low","Close")])
plot(tail(stochOsc[,"fastK"], 100), type="l",
main="Fast %K and Williams %R", ylab="",
ylim=range(cbind(stochOsc, stochWPR), na.rm=TRUE) )
lines(tail(stochWPR, 100), col="blue")
lines(tail(1-stochWPR, 100), col="red", lty="dashed")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|