MFI(TTR)
MFI()所属R语言包:TTR
Money Flow Index
资金流量指标
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The MFI is a ratio of positive and negative money flow over time.
小额信贷机构的正面和负面的货币流动性比率随着时间的推移。
用法----------Usage----------
MFI(HLC, volume, n=14)
参数----------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或矩阵转换成的对象包含高 - 低 - 收盘价。如果只有一个单变量序列是,它将被使用。查看详细信息。
参数:volume
Vector or matrix of volume observations corresponding to HLC object.
的量的观测HLC对象的向量或矩阵。
参数:n
Number of periods to use.
期间使用的数量。
Details
详细信息----------Details----------
Money Flow (MF) is the product of price and volume. Positive/negative MF occur when today's price is higher/lower than yesterday's price. The MFI is calculated by dividing positive MF by negative MF for the past n periods. It is then scaled between 0 and 100.
资金流向(MF)是产品的价格和交易量。正/负号时,会出现今天的价格高于/低于昨天的价格。 MFI的计算方法是由过去的“n负MF期间将积极MF。然后,缩放在0和100之间。
MFI 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.
小额信贷机构通常使用的典型价格计算,但如果单变量序列(如关闭,加权关闭,中位数价格等),则其将被用来代替。
值----------Value----------
A object of the same class as HLC and volume or a vector (if try.xts fails) containing the MFI values.
一个HLC和volume或向量(try.xts如果失败),含有MFI值相同的类的对象。
注意----------Note----------
Divergence between MFI and price can be indicative of a reversal. In addition, values above/below 80/20 indicate market tops/bottoms.
散度在MFI和价格之间可以逆转的指标。此外,高于/低于80/20的值,表明市场顶部/底部。
(作者)----------Author(s)----------
Joshua Ulrich
参考文献----------References----------
http://www.fmlabs.com/reference/default.htm?url=MoneyFlowIndex.htm<br> http://www.linnsoft.com/tour/techind/mfi.htm<br> http://stockcharts.com/school/doku.php?id=chart_school:technical_indicators:money_flow_index_mfi<br>
参见----------See Also----------
See OBV and CMF.
见OBV和CMF。
实例----------Examples----------
data(ttrc)
mfi <- MFI(ttrc[,c("High","Low","Close")], ttrc[,"Volume"])
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|