DVI(TTR)
DVI()所属R语言包:TTR
DV Intermediate Oscillator
DV中级振荡器
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The DV Intermediate oscillator (DVI) is a very smooth momentum oscillator that can also be used as a trend indicator. Created by David Varadi.
的DV中级振荡器(DVI)是一个非常光滑的势头振荡器,也可以用来作为一种趋势指标。创建者大卫Varadi。
用法----------Usage----------
DVI(price, n=252, wts=c(0.8,0.2), smooth=3,
magnitude=c(5,100,5), stretch=c(10,100,2))
参数----------Arguments----------
参数:price
Price series that is coercible to xts or matrix.
价格XTS或矩阵转换成系列。
参数:n
Number of periods for the percent rank.
周期数的百分比排名。
参数:wts
The weight given to the smoothed returns (magnitude) component and the up/down days (stretch) component, respectively.
的平滑回报(大小)成分和向上/向下天(拉伸)成分,分别给出的重量。
参数:smooth
The number of periods to smooth price.
平滑价格期间的数量。
参数:magnitude
A set of 3 periods used to smooth magnitude.
一组3个周期用于平滑幅度。
参数:stretch
A set of 3 periods used to smooth stretch.
一组使用3个周期,以流畅舒展。
Details
详细信息----------Details----------
The DVI combines smoothed returns over different time windows and the relative number of up versus down days (stretch) over different time windows.
DVI结合平滑回报,在不同的时间窗口和相对数量的上升与下跌天数(拉伸)在不同的时间窗口。
值----------Value----------
A object of the same class as price or a vector (if try.xts fails) containing the DVI values.
price或向量(try.xts如果失败),包含DVI值相同的类的一个对象。
(作者)----------Author(s)----------
Joshua Ulrich
参考文献----------References----------
http://cssanalytics.wordpress.com/2009/12/13/what-is-the-dvi/<br> http://marketsci.wordpress.com/2010/07/27/css-analytics%E2%80%99-dvi-indicator-revealed/<br>
实例----------Examples----------
data(ttrc)
dvi <- DVI(ttrc[,"Close"])
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|