CCI(TTR)
CCI()所属R语言包:TTR
Commodity Channel Index
商品通道指数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The Commodity Channel Index (CCI) attempts to identify starting and ending trends.
商品通道指数(CCI)试图找出趋势的开始和结束。
用法----------Usage----------
CCI(HLC, n=20, maType, c=0.015, ...)
参数----------Arguments----------
参数:HLC
Object that is coercible to xts or matrix and contains High-Low-Close prices. If only a univariate series is given, it will be used. See details.
XTS或矩阵转换成的对象包含高 - 低 - 收盘价。如果只有一个单变量序列是,它将被使用。查看详细信息。
参数:n
Number of periods for moving average.
移动平均周期数。
参数:maType
A function or a string naming the function to be called.
一个函数或一个字符串命名的函数被调用。
参数:c
Constant to apply to the mean deviation.
常数,以适用于平均偏差。
参数:...
Other arguments to be passed to the maType function.
其他参数传递给maType功能。
Details
详细信息----------Details----------
CCI relates the current price and the average of price over n periods. The CCI usually falls in a channel of -100 to 100. A basic CCI trading system is: Buy (sell) if CCI rises above 100 (falls below -100) and sell (buy) when it falls below 100 (rises above -100).
CCI涉及在当前物价和n期间的平均价格。 CCI往往会在一个通道从-100到100。 CCI交易系统是一个基本的买入(卖出),如果CCI上升超过100(低于-100),卖(买)时,低于100(上升超过-100)。
CCI is usually calculated using the typical price, but if a univariate series (e.g. Close, Weighted Close, Median Price, etc.) is provided, it will be used instead.
CCI通常使用的典型价格计算,但如果单变量序列(如关闭,加权关闭,中位数价格等),则其将被用来代替。
值----------Value----------
A object of the same class as HLC or a vector (if try.xts fails) containing the CCI values.
HLC或向量(try.xts如果失败),包含CCI值相同的类的一个对象。
注意----------Note----------
If HLC is a High-Low-Close matrix, then typical price will be calculated. If HLC is a vector, then those values will be used instead of the typical price.
如果HLC是一个高 - 低 - 关闭矩阵,然后是典型的价格将被计算。如果HLC是一个向量,然后将这些值,而不是典型的价格。
(作者)----------Author(s)----------
Joshua Ulrich
参考文献----------References----------
http://www.fmlabs.com/reference/CCI.htm<br> http://www.equis.com/Customer/Resources/TAAZ/?c=3&p=42<br> http://www.linnsoft.com/tour/techind/cci.htm<br> http://stockcharts.com/education/IndicatorAnalysis/indic_CCI.html<br>
参见----------See Also----------
See EMA, SMA, etc. for moving average options; and note Warning section. See aroon, ADX, TDI, VHF, GMMA for other indicators that measure trend direction/strength.
见EMA,SMA,等移动平均购股权,并注意警告部分。见aroon,ADX,TDI,VHF,GMMA其他指标,衡量趋势的方向/强度。
实例----------Examples----------
data(ttrc)
cci <- CCI(ttrc[,c("High","Low","Close")])
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|