ADX(TTR)
ADX()所属R语言包:TTR
Welles Wilder's Directional Movement Index
威尔斯怀尔德的定向运动指数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Directional Movement Index; developed by J. Welles Wilder.
定向运动指数;由J.威尔斯怀尔德开发。
用法----------Usage----------
ADX(HLC, n=14, maType, ...)
参数----------Arguments----------
参数:HLC
Object that is coercible to xts or matrix and contains High-Low-Close prices.
XTS或矩阵转换成的对象包含高 - 低 - 收盘价。
参数:n
Number of periods to use for DX calculation (not ADX calculation).
数期间使用的DX计算(不ADX计算)。
参数:maType
A function or a string naming the function to be called.
一个函数或一个字符串命名的函数被调用。
参数:...
Other arguments to be passed to the maType function.
其他参数传递给maType功能。
Details
详细信息----------Details----------
The DIp/DIn (positive/negative) is the percentage of the true range that is up/down.
DIp/DIn(正极/负极)的百分比的真实范围是向上/向下。
值----------Value----------
A object of the same class as HLC or a matrix (if try.xts fails) containing the columns:
的HLC或包含列的矩阵(try.xts如果失败)具有相同类的一个对象:
参数: DIp
The positive Direction Index.
积极的方向标。
参数: DIn
The negative Direction Index.
的负方向指数。
参数: DX
The Direction Index.
方向标。
参数: ADX
The Average Direction Index (trend strength).
平均方向指数趋势的力量。
注意----------Note----------
A buy/sell signal is generated when the +/-DI crosses up over the -/+DI, when the DX/ADX signals a strong trend. A high/low DX signals a strong/weak trend. DX is usually smoothed with a moving average (i.e. the ADX).
的买入/卖出信号时,会产生+ /-DI交叉在 - / + DI,当DX / ADX信号的强劲走势。高/低DX信号强/弱的趋势。 DX通常是平滑移动平均线(ADX)。
(作者)----------Author(s)----------
Joshua Ulrich
参考文献----------References----------
http://www.fmlabs.com/reference/DI.htm<br> http://www.fmlabs.com/reference/DX.htm<br> http://www.fmlabs.com/reference/ADX.htm<br> http://www.fmlabs.com/reference/ADXR.htm<br> http://www.equis.com/Customer/Resources/TAAZ/Default.aspx?c=3&p=49<br> http://linnsoft.com/tour/techind/dirInd.htm<br> http://linnsoft.com/tour/techind/adx.htm<br> http://linnsoft.com/tour/techind/adxr.htm<br> http://stockcharts.com/education/IndicatorAnalysis/indic_ADX.html<br>
参见----------See Also----------
See EMA, SMA, etc. for moving average options; and note Warning section. The DX calculation uses ATR. See aroon, CCI, TDI, VHF, GMMA for other indicators that measure trend direction/strength.
见EMA,SMA,等移动平均购股权,并注意警告部分。 DX计算使用了ATR。见aroon,CCI,TDI,VHF,GMMA其他指标,衡量趋势的方向/强度。
实例----------Examples----------
data(ttrc)
dmi.adx <- ADX(ttrc[,c("High","Low","Close")])
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|