DPO(TTR)
DPO()所属R语言包:TTR
De-Trended Price Oscillator
德趋于价格振荡器
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The Detrended Price Oscillator (DPO) removes the trend in prices - or other series - by subtracting a moving average of the price from the price.
非趋势价格振荡器(DPO)消除了价格趋势 - 或其他系列 - 价格减去移动平均线的价格从。
用法----------Usage----------
DPO(x, n=10, maType, shift=n/2+1, percent=FALSE, ...)
参数----------Arguments----------
参数:x
Price, volume, etc. series that is coercible to xts or matrix.
价格,数量,等系列产品,为强制XTS或矩阵。
参数:n
Number of periods for moving average.
移动平均周期数。
参数:maType
A function or a string naming the function to be called.
一个函数或一个字符串命名的函数被调用。
参数:shift
The number of periods to shift the moving average.
转移的移动平均的周期数目。
参数:percent
logical; if TRUE, the percentage difference between the slow and fast moving averages is returned, otherwise the difference between the respective averages is returned.
逻辑;如果TRUE,慢速和快速的移动平均值之间的百分比差异,则返回,否则各自的平均值之间的差异,则返回。
参数:...
Other arguments to be passed to the maType function.
其他参数传递给maType功能。
Details
详细信息----------Details----------
The Detrended Price shows cycles and overbought / oversold conditions. Note the calculation shifts the results shift periods, so the last shift periods will be zero.
非趋势价格周期超买/超卖的条件。注意计算结果移位shift期间,所以最后的shift期间将为零。
值----------Value----------
A object of the same class as x or a vector (if try.xts fails) containing the DPO values.
x或向量(try.xts如果失败),包含DPO值相同的类的一个对象。
注意----------Note----------
As stated above, the DPO can be used on any univariate series, not just price.
正如上文所述,可使用的DPO任何单变量序列,不仅仅是价格上。
(作者)----------Author(s)----------
Joshua Ulrich
参考文献----------References----------
http://www.fmlabs.com/reference/DPO.htm<br> http://www.equis.com/Customer/Resources/TAAZ/?c=3&p=48<br>
参见----------See Also----------
See EMA, SMA, etc. for moving average options; and note Warning section. See MACD for a general oscillator.
见EMA,SMA,等移动平均购股权,并注意警告部分。见MACD一般的振荡器。
实例----------Examples----------
data(ttrc)
priceDPO <- DPO(ttrc[,"Close"])
volumeDPO <- DPO(ttrc[,"Volume"])
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|