macd4(ttrTests)
macd4()所属R语言包:ttrTests
MACD oscillator
MACD振荡器
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A new way of computing the MACD oscillator where a fourth parameter is allowed to vary. Typically this parameter is fixed at 1 arbitrarily.
一种新的方式计算MACD振荡器在第四个参数是可以变化的。通常情况下,该参数被任意固定在1。
用法----------Usage----------
macd4(x, params = c(12, 26, 1, 9))
参数----------Arguments----------
参数:x
A univariate series
一元系列
参数:params
First parameter - the 'fast' average parameter Second parameter - the 'slow' average parameter Third parameter - the new parameter, indicating a 'fast' averaging of the MACD line instead of the typical choice of the MACD line itself Fourth parameter - the 'slow' averaging for the MACD signal line
第一个参数 - “快”的平均参数,第二个参数 - “慢”的平均参数,第三个参数 - 新的参数,表示一个快的MACD线的MACD线,而不是通常的选择本身第四个参数的平均值 - 慢平均MACD信号线
Details
详细信息----------Details----------
The standard interpretation of the MACD is a 'crossover' rule, i.e. when the MACD oscillator crosses from positive to negative, that's a sell signal, and vice versa.
的MACD是一个“交叉”的标准解释规则,即当MACD振荡器跨越从正到负的,这是一个卖出信号,反之亦然。
值----------Value----------
A univariate series computed as the difference between the MACD line and the MACD signal line. "macd4" replaces the MACD line with a fast average of the MACD line.
MACD线和MACD的信号线之间的差额计算一元系列。 “macd4”取代一个快速平均线与MACD线的MACD。
(作者)----------Author(s)----------
David St John
参考文献----------References----------
http://cran.r-project.org/web/packages/TTR/ http://en.wikipedia.org/wiki/MACD
实例----------Examples----------
data(spData)
oscillator <- macd4(spData)
plot(oscillator)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|