GMMA(TTR)
GMMA()所属R语言包:TTR
Guppy Multiple Moving Averages
孔雀鱼多移动平均线
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Calculate the Guppy Multiple Moving Average of a series.
计算一系列的顾比复合移动平均线。
用法----------Usage----------
GMMA(x, short=c(3,5,8,10,12,15),
long=c(30,35,40,45,50,60), maType)
参数----------Arguments----------
参数:x
Price, volume, etc. series that is coercible to xts or matrix.
价格,数量,等系列产品,为强制XTS或矩阵。
参数:short
Vector of short-term periods.
向量的短期期间。
参数:long
Vector of long-term periods.
向量的术语周期。
参数:maType
Either: <br>(1) A function or a string naming the function to be called, or<br> (2) a list with the first component like (1) above, and additional parameters specified as named components. See Examples.
:参考(1)函数或一个字符串命名的函数被调用,或参考(2)如上述(1)的第一个组件列表,和其他参数指定的命名组件。请参阅示例。
Details
详细信息----------Details----------
The Guppy Multiple Moving Average signals a changing trend when the short and long groups of moving averages intersect. An up/down trend exists when the short/long-term moving averages are greater than the long/short-term averages.
顾比复合移动平均线信号一个short和long组移动平均线相交的变化趋势。存在时的短期/术语移动平均线大于长/短期均线的向上/向下趋势。
值----------Value----------
A object of the same class as x or price or a vector (if try.xts fails) containing the Guppy Multiple Moving Average.
同一个类的一个对象,x或price或向量(try.xts如果失败),顾比复合移动平均线。
(作者)----------Author(s)----------
Joshua Ulrich
参考文献----------References----------
http://www.investopedia.com/terms/g/guppy-multiple-moving-average.asp<br>
参见----------See Also----------
See aroon, CCI, ADX, VHF, TDI for other indicators that measure trend direction/strength.
见aroon,CCI,ADX,VHF,TDI其他指标,衡量趋势的方向/强度。
实例----------Examples----------
data(ttrc)
gmma <- GMMA(ttrc[,"Close"])
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|