VHF(TTR)
VHF()所属R语言包:TTR
Vertical Horizontal Filter
立式卧式过滤器
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The Vertical Horizontal Filter (VHF) attempts to identify starting and ending trends. Developed by Adam White.
立式卧式过滤器(VHF)试图找出趋势的开始和结束。开发的白色亚当。
用法----------Usage----------
VHF(price, n=28)
参数----------Arguments----------
参数:price
Object that is coercible to xts or matrix and contains a Close price series, or a High-Low-Close price series.
XTS或矩阵转换成对象包含一个的收市价系列,或高 - 低 - 收盘价系列。
参数:n
Number of periods to use.
期间使用的数量。
Details
详细信息----------Details----------
The VHF is calculated by subtracting the n-period lowest low from the n-period highest high and dividing that result by the n-period rolling sum of the close price changes.
VHF的计算方法是减去周期低点n时期的最高价和nn期间滚动的收盘价变化的总和除以该结果。
值----------Value----------
A object of the same class as price or a vector (if try.xts fails) containing the VHF values.
A对象具有相同类的price(try.xts失败),包含VHF值的一个向量。
注意----------Note----------
If Close prices are given, the function calculates the max/min using only those prices (the default). If HLC prices are given, the function calculates the max/min using the high/low prices (added for flexibility).
如果收盘价,该函数将计算只使用那些价格(默认值),最大/最小。如果HLC的价格,该函数将计算使用的最大/最小高/低的价格增加了灵活性。
(作者)----------Author(s)----------
Joshua Ulrich
参考文献----------References----------
http://www.equis.com/Customer/Resources/TAAZ?c=3&p=119<br>
参见----------See Also----------
See aroon, CCI, ADX, TDI, GMMA for other indicators that measure trend direction/strength.
见aroon,CCI,ADX,TDI,GMMA其他指标,衡量趋势的方向/强度。
实例----------Examples----------
data(ttrc)
vhf.close <- VHF(ttrc[,"Close"])
vhf.hilow <- VHF(ttrc[,c("High","Low","Close")])
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|