ATR(TTR)
ATR()所属R语言包:TTR
True Range / Average True Range
真实波动幅度/平均真实波动幅度
译者:生物统计家园网 机器人LoveR
描述----------Description----------
True range (TR) is a measure of volatility of a High-Low-Close series; average true range (ATR) is a Welles Wilder's style moving average of the TR. Developed by J. Welles Wilder in 1978.
真实波动幅度(TR)是衡量波动性的高 - 低 - 关闭系列,真实波动幅度均值(ATR)是一个威尔斯怀尔德的移动平均线的TR的风格。于1978年由J.威尔斯怀尔德的开发。
用法----------Usage----------
ATR(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 for moving average.
移动平均周期数。
参数:maType
A function or a string naming the function to be called.
一个函数或一个字符串命名的函数被调用。
参数:...
Other arguments to be passed to the maType function.
其他参数传递给maType功能。
Details
详细信息----------Details----------
TR incorporates yesterday's close in the calculation (high minus low). E.g. if yesterday's close was higher than today's high, then the TR would equal yesterday's close minus today's low.
TR结合昨日的收盘价计算(高减去低)。例如如果昨天的收盘价高于今天的高,那么的TR就等于昨天的收盘价减去今天的低。
The ATR is a component of the Welles Wilder Directional Movement Index (DX, ADX).
的ATR是威尔斯怀尔德定向运动指数(DX,ADX)的一个组成部分。
值----------Value----------
A object of the same class as HLC or a matrix (if try.xts fails) containing the columns:
的HLC或包含列的矩阵(try.xts如果失败)具有相同类的一个对象:
参数: tr
The true range of the series.
真实波动幅度的系列产品。
参数: atr
The average (as specified by ma) true range of the series.
平均(ma)真实波动幅度的系列。
参数: true.high
The true high of the series.
真正的高的系列产品。
参数: true.low
The true low of the series.
该系列的真正的低。
(作者)----------Author(s)----------
Joshua Ulrich
参考文献----------References----------
http://www.fmlabs.com/reference/TR.htm<br> http://www.fmlabs.com/reference/ATR.htm<br> http://www.equis.com/Customer/Resources/TAAZ/?c=3&p=35<br> http://www.linnsoft.com/tour/techind/trueRange.htm<br> http://stockcharts.com/education/IndicatorAnalysis/indic_ATR.html<br>
参见----------See Also----------
See EMA, SMA, etc. for moving average options; and note Warning section. See DX, which uses true range.
见EMA,SMA,等移动平均购股权,并注意警告部分。请参阅DX,它使用真实范围内。
实例----------Examples----------
data(ttrc)
atr <- ATR(ttrc[,c("High","Low","Close")], n=14)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|