CMF(TTR)
CMF()所属R语言包:TTR
Chaikin Money Flow
蔡金资金流向
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Chaikin Money Flow compares total volume over the last n time periods to total volume times the Close Location Value (CLV) over the last n time periods. Developed by Marc Chaikin.
蔡金资金流向总量在过去的n的时间段进行比较,总量时间“关闭”位置值(CLV)在过去的n的时间段。开发的马克蔡金。
用法----------Usage----------
CMF(HLC, volume, n = 20)
参数----------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对象。
参数:n
Number of periods to use.
期间使用的数量。
Details
详细信息----------Details----------
Chaikin Money Flow is calculated by taking dividing the sum of the Chaikin Accumulation / Distribution line over the past n periods by the sum of volume over the past n periods.
蔡金资金流向的计算方法是采取在过去n期间由量的总和,在过去n期间的总和除以蔡金累积/派发线。
值----------Value----------
A object of the same class as HLC and volume or a vector (if try.xts fails) containing the Chaikin Money Flow values.
同一类HLC和volume或向量(try.xts如果失败),包含蔡金货币流量值的一个对象。
注意----------Note----------
When Chaikin Money Flow is above/below +/- 0.25 it is a bullish/bearish signal. If Chaikin Money Flow remains below zero while the price is rising, it indicates a probable reversal.
蔡金资金流量是高于/低于+ / - 0.25,这是一个看涨/看跌信号。蔡金资金流向仍低于零,而如果价格上升,则表示可能逆转。
(作者)----------Author(s)----------
Joshua Ulrich
参考文献----------References----------
http://www.fmlabs.com/reference/ChaikinMoneyFlow.htm<br> http://www.linnsoft.com/tour/techind/cmf.htm<br> http://stockcharts.com/education/IndicatorAnalysis/indic_ChaikinMoneyFlow1.html<br>
参见----------See Also----------
See CLV, and chaikinAD.
见CLV,chaikinAD。
实例----------Examples----------
data(ttrc)
cmf <- CMF(ttrc[,c("High","Low","Close")], ttrc[,"Volume"])
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|