chaikinAD(TTR)
chaikinAD()所属R语言包:TTR
Chaikin Accumulation / Distribution
蔡金累积/派发
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The Chaikin Accumulation / Distribution (AD) line is a measure of the money flowing into or out of a security. It is similar to On Balance Volume (OBV). Developed by Marc Chaikin.
“蔡金累积/派发线(AD)是一个衡量的钱流入或流出的安全性。这是一个类似的交易量指标(OBV)。开发的马克蔡金。
用法----------Usage----------
chaikinAD(HLC, volume)
参数----------Arguments----------
参数:HLC
Object that is coercible to xts or matrix and contains High-Low-Close prices.
XTS或矩阵转换成的对象包含高 - 低 - 收盘价。
参数:volume
Vector or matrix of volume observations corresponding to the HLC object.
矢量或矩阵相应的量观测到HLC对象。
Details
详细信息----------Details----------
The AD line is similar to OBV; the difference is that OBV sums volume multiplied by +/- 1 if the close is higher/lower than the previous close, while the AD line multiplies volume by the close location value (CLV).
在AD线上类似OBV,不同的是,OBV总和量乘以由+ / - 1,如果收盘高于/低于以前的接近,而在AD线上乘以价值(CLV)的关闭位置上的音量。
值----------Value----------
A object of the same class as HLC and volume or a vector (if try.xts fails) containing the accumulation / distribution values.
HLC和volume或向量(try.xts如果失败),累积/派发值相同的类的一个对象。
注意----------Note----------
The Accumulation/Distribution Line is interpreted by looking for a divergence in the direction of the indicator relative to price.
累积/派发线方向的指标相对价格的分歧在寻找解释。
(作者)----------Author(s)----------
Joshua Ulrich
参考文献----------References----------
http://www.fmlabs.com/reference/AccumDist.htm<br> http://www.equis.com/Customer/Resources/TAAZ/?c=3&p=27<br> http://www.linnsoft.com/tour/techind/acc_dis.htm<br> http://stockcharts.com/education/IndicatorAnalysis/indic_AccumDistLine.html<br>
参见----------See Also----------
See OBV, and CLV.
见OBV,CLV。
实例----------Examples----------
data(ttrc)
ad <- chaikinAD(ttrc[,c("High","Low","Close")], ttrc[,"Volume"])
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|