标签:没有 ado 计算公式 最大 准备 table ref 文档 lib
函数名:ATR
名称:真实波动幅度均值
简介:真实波动幅度均值(ATR)是
以 N 天的指数移动平均数平均後的交易波动幅度。
计算公式:一天的交易幅度只是单纯地 最大值 - 最小值。
而真实波动幅度则包含昨天的收盘价,若其在今天的幅度之外:
真实波动幅度 = max(最大值,昨日收盘价) − min(最小值,昨日收盘价) 真实波动幅度均值便是「真实波动幅度」的 N 日 指数移动平均数。
特性::
NOTE: The ATR
function has an unstable period.
real = ATR(high, low, close, timeperiod=14)
Learn more about the Average True Range at tadoc.org.
函数名:NATR
名称:归一化波动幅度均值
简介:归一化波动幅度均值(NATR)是
NOTE: The NATR
function has an unstable period.
real = NATR(high, low, close, timeperiod=14)
Learn more about the Normalized Average True Range at tadoc.org.
函数名:TRANGE
名称:真正的范围
real = TRANGE(high, low, close)
Learn more about the True Range at tadoc.org.
talib 中文文档(九):# Volatility Indicator Functions 波动率指标函数
标签:没有 ado 计算公式 最大 准备 table ref 文档 lib
原文地址:https://www.cnblogs.com/fangbei/p/9461311.html