changes(TTR)
changes()所属R语言包:TTR
Rate of Change / Momentum
/动量的变化率
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Calculate the (rate of) change of a series over n periods.
计算(率)超过n期间的一系列变化。
用法----------Usage----------
ROC(x, n=1, type=c("continuous", "discrete"), na.pad=TRUE)
momentum(x, n=1, na.pad=TRUE)
参数----------Arguments----------
参数:x
Price, volume, etc. series that is coercible to xts or matrix.
价格,成交量等可疑转换到XTS矩阵系列
参数:n
Number of periods to use.
期间使用的数量。
参数:type
Compounding type; either "continuous" (the default) or "discrete".
复合型;是"continuous"(默认值)或"discrete"。
参数:na.pad
Should periods prior to n be appended? Default is TRUE.
如果前期间n被追加吗?默认是TRUE。
Details
详细信息----------Details----------
The ROC indicator provides the percentage difference of a series over two observations, while the momentum indicator simply provides the difference.
ROC指标在两个观察了一系列的百分比差异,而动量指标只是提供了差异。
值----------Value----------
A object of the same class as x or a vector (if try.xts fails) containing the rate-of-change (or return) values for ROC or a vector containing the differenced price series for momentum.
一个对象具有相同类的x或矢量(如果try.xts失败)率变化(或返回)值ROC或向量的差分价格系列momentum。
(作者)----------Author(s)----------
Joshua Ulrich
实例----------Examples----------
data(ttrc)
roc <- ROC(ttrc[,"Close"])
mom <- momentum(ttrc[,"Close"])
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|