TRIX(TTR)
TRIX()所属R语言包:TTR
Triple Smoothed Exponential Oscillator
三重平滑指数振荡器
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The TRIX indicator calculates the rate of change of a triple exponential moving average. Developed by Jack K. Hutson.
TRIX指标计算出的变化率的三重指数移动平均。开发的杰克K.赫特森。
用法----------Usage----------
TRIX(price, n=20, nSig=9, maType, percent=TRUE, ...)
参数----------Arguments----------
参数:price
Price series that is coercible to xts or matrix.
价格XTS或矩阵转换成系列。
参数:n
Number of periods for moving average.
移动平均周期数。
参数:nSig
Number of periods for signal line moving average.
信号线的移动平均线的周期数。
参数: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)的第一个组件列表,和其他参数指定的命名组件。请参阅示例。
参数:percent
logical; if TRUE, the rate of change is calculated using the ROC function, otherwise the momentum function is used.
合乎逻辑;,如果TRUE,ROC功能的变化率计算,否则momentum函数使用。
参数:...
Other arguments to be passed to the maType function in case (1) above.
其他参数传递给maType功能的情况下,上述(1)。
Details
详细信息----------Details----------
The TRIX is calculated as follows:<br> 3MA = MA( MA( MA(price) ) )<br> trix = 100 * [ 3MA(t) / 3MA(t-1) - 1 ]
TRIX被计算如下:参考3MA =MA(MA(MA(price)))参考矩阵= 100 * [3MA(t)的/ 3MA(T-1) - 1]
值----------Value----------
A object of the same class as price or a vector (if try.xts fails) containing the TRIX values.
price或向量(try.xts如果失败),包含TRIX值相同的类的一个对象。
注意----------Note----------
Buy/sell signals are generated when the TRIX crosses above/below zero. A nine-period EMA of the TRIX is used as a default signal line. Buy/sell signals are generated when the TRIX crosses above/below the signal line and is also above/below zero.
购买/卖出信号的生成的,当TRIX /零下突破。阿九期EMA的TRIX作为一个默认的信号线。购买/卖出信号的生成,,当TRIX穿越信号线的上/下,也高于/低于零。
(作者)----------Author(s)----------
Joshua Ulrich
参考文献----------References----------
http://www.fmlabs.com/reference/default.htm?url=TRIX.htm<br> http://www.equis.com/Customer/Resources/TAAZ/?c=3&p=114<br> http://www.linnsoft.com/tour/techind/trix.htm<br> http://stockcharts.com/education/IndicatorAnalysis/indic_trix.htm<br>
参见----------See Also----------
See EMA, SMA, etc. for moving average options; and note Warning section.
见EMA,SMA,等移动平均购股权,并注意警告部分。
实例----------Examples----------
data(ttrc)
trix <- TRIX(ttrc[,"Close"])
trix4 <- TRIX(ttrc[,"Close"],
maType=list(list(SMA), list(EMA, wilder=TRUE), list(SMA), list(DEMA)))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|