EMV(TTR)
EMV()所属R语言包:TTR
Arms' Ease of Movement Value
武器易于运动的价值
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Arms' Ease of Movement Value (EMV) emphasizes days where the security moves easily and minimizes days where the security does not move easily. Developed by Richard W. Arms, Jr.
武器易于运动的价值(EMV)强调的安全移动方便,最大限度地减少天的安全性,不会轻易移动。小由Richard W.武器的开发
用法----------Usage----------
EMV(HL, volume, n=9, maType, vol.divisor=10000, ...)
参数----------Arguments----------
参数:HL
Object that is coercible to xts or matrix and contains High-Low prices.
XTS或矩阵转换成的对象包含高 - 低的价格。
参数:volume
Vector or matrix of volume observations corresponding to the HL object.
矢量或矩阵相应的量观测到HL对象。
参数:n
Number of periods for moving average.
移动平均周期数。
参数:maType
A function or a string naming the function to be called.
一个函数或一个字符串命名的函数被调用。
参数:vol.divisor
An increment to make the results larger and easier to work with.
一个增量大的结果和更容易使用。
参数:...
Other arguments to be passed to the maType function.
其他参数传递给maType功能。
Details
详细信息----------Details----------
The EMV is calculated by dividing the midpoint ([high + low]/2) move by the 'Box Ratio' (volume divided by the high minus low).
EMV是由将中点(高+低] / 2)移动的“盒子比(体积除以高减去低)的计算。
值----------Value----------
A object of the same class as HL and volume or a matrix (if try.xts fails) containing the columns:
一个对象的同一类HL和volume或包含的列矩阵(try.xts如果失败):
参数: emv
The ease of movement values.
的移动值的难易程度。
参数: emvMA
The smoothed (as specified by ma) ease of movement values.
平滑的(ma)轻松的运动价值观。
注意----------Note----------
A buy/sell signal is generated when the EMV crosses above/below zero. When the EMV hovers around zero, there are small price movements and/or high volume, and the price is not moving easily.
EMV穿过时,会产生高于/低于零的买入/卖出信号。当EMV在零附近徘徊,有小的价格变动和/或高容量,而且价格不动容易。
(作者)----------Author(s)----------
Joshua Ulrich
参考文献----------References----------
http://www.fmlabs.com/reference/ArmsEMV.htm<br> http://www.equis.com/Customer/Resources/TAAZ/?c=3&p=51<br> http://linnsoft.com/tour/techind/arms.htm<br>
参见----------See Also----------
See EMA, SMA, etc. for moving average options; and note Warning section.
见EMA,SMA,等移动平均购股权,并注意警告部分。
实例----------Examples----------
data(ttrc)
emv <- EMV(ttrc[,c("High","Low")], ttrc[,"Volume"])
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|