talib 中文文档(十五):Math Operator Functions 数学方法

Math Operator Functions

数学运算符函数

ADD - Vector Arithmetic Add

函数名:ADD
名称:向量加法运算

real = ADD(high, low)

DIV - Vector Arithmetic Div

函数名:DIV
名称:向量除法运算

real = DIV(high, low)

MAX - Highest value over a specified period

函数名:MAX
名称:周期内最大值(未满足周期返回nan)

real = MAX(close, timeperiod=30)

MAXINDEX - Index of highest value over a specified period

函数名:MAXINDEX
名称:周期内最大值的索引

integer = MAXINDEX(close, timeperiod=30)

MIN - Lowest value over a specified period

函数名:MIN
名称:周期内最小值 (未满足周期返回nan)

real = MIN(close, timeperiod=30)

MININDEX - Index of lowest value over a specified period

函数名:MININDEX
名称:周期内最小值的索引

integer = MININDEX(close, timeperiod=30)

MINMAX - Lowest and highest values over a specified period

函数名:MINMAX
名称:周期内最小值和最大值(返回元组````元组(array【最小】,array【最大】)```)

min, max = MINMAX(close, timeperiod=30)

MINMAXINDEX - Indexes of lowest and highest values over a specified period

函数名:MINMAX
名称:周期内最小值和最大值索引(返回元组````元组(array【最小】,array【最大】)```)

minidx, maxidx = MINMAXINDEX(close, timeperiod=30)

MULT - Vector Arithmetic Mult

函数名:MULT
名称:向量乘法运算

real = MULT(high, low)

SUB - Vector Arithmetic Substraction

函数名:SUB
名称:向量减法运算

real = SUB(high, low)

SUM - Summation

函数名:SUM
名称:周期内求和

real = SUM(close, timeperiod=30)

原文地址:https://www.cnblogs.com/fangbei/p/9461339.html

时间: 2024-10-10 10:59:19

talib 中文文档(十五):Math Operator Functions 数学方法的相关文章

talib 中文文档(五):文档导航

Documentation 安装和问题 快速使用 高级应用 方法分类 Overlap Studies 重叠的研究 Momentum Indicators 动量指标 Volume Indicators 量指标 Volatility Indicators 波动性指标 Price Transform 价格指标 Cycle Indicators 循环指标 Pattern Recognition 模式识别 Statistic Functions 统计功能 Math Transform 数学变换 Math

talib 中文文档(十四):Math Transform Functions 数学变换

Math Transform Functions ACOS - Vector Trigonometric ACos 函数名:ACOS 名称:acos函数是反余弦函数,三角函数 real = ACOS(close) ASIN - Vector Trigonometric ASin 函数名:ASIN 名称:反正弦函数,三角函数 real = ASIN(close) ATAN - Vector Trigonometric ATan 函数名:ASIN 名称:数字的反正切值,三角函数 real = ATA

talib 中文文档(十):Price Transform Functions 价格指标

Price Transform Functions AVGPRICE - Average Price 函数名:AVGPRICE 名称:平均价格函数 real = AVGPRICE(open, high, low, close) Learn more about the Average Price at tadoc.org. MEDPRICE - Median Price 函数名:MEDPRICE 名称:中位数价格 real = MEDPRICE(high, low) Learn more abo

talib 中文文档(九):Volume Indicators 成交量指标

Volume Indicators 成交量指标 AD - Chaikin A/D Line 量价指标 函数名:AD 名称:Chaikin A/D Line 累积/派发线(Accumulation/Distribution Line) 简介:Marc Chaikin提出的一种平衡交易量指标,以当日的收盘价位来估算成交流量,用于估定一段时间内该证券累积的资金流量. 计算公式: 多空对比 = [(收盘价- 最低价) - (最高价 - 收盘价)] / (最高价 - 最低价) 若最高价等于最低价: 多空对

talib 中文文档(十一):Cycle Indicator Functions 周期指标

Cycle Indicator Functions 不是很懂,欢迎指教 HT_DCPERIOD - Hilbert Transform - Dominant Cycle Period 函数名:HT_DCPERIOD 名称: 希尔伯特变换-主导周期 简介:将价格作为信息信号,计算价格处在的周期的位置,作为择时的依据. 文库文档 NOTE: The HT_DCPERIOD function has an unstable period. real = HT_DCPERIOD(close) Learn

talib 中文文档(九):# Volatility Indicator Functions 波动率指标函数

Volatility Indicator Functions 波动率指标函数 ATR - Average True Range 函数名:ATR 名称:真实波动幅度均值 简介:真实波动幅度均值(ATR)是 以 N 天的指数移动平均数平均後的交易波动幅度. 计算公式:一天的交易幅度只是单纯地 最大值 - 最小值. 而真实波动幅度则包含昨天的收盘价,若其在今天的幅度之外: 真实波动幅度 = max(最大值,昨日收盘价) − min(最小值,昨日收盘价) 真实波动幅度均值便是「真实波动幅度」的 N 日

talib 中文文档(七):Overlap Studies Functions

Overlap Studies Functions 重叠指标 BBANDS - Bollinger Bands 函数名:BBANDS 名称: 布林线指标 简介:其利用统计原理,求出股价的标准差及其信赖区间,从而确定股价的波动范围及未来走势,利用波带显示股价的安全高低价位,因而也被称为布林带. 分析和应用: 百度百科 同花顺学院 upperband, middleband, lowerband = BBANDS(close, timeperiod=5, nbdevup=2, nbdevdn=2,

talib 中文文档(八): Momentum Indicator Functions 动量指标

Momentum Indicator Functions ADX - Average Directional Movement Index 函数名:ADX 名称:平均趋向指数 简介:使用ADX指标,指标判断盘整.振荡和单边趋势. 公式: 一.先决定股价趋势(Directional Movement,DM)是上涨或下跌: “所谓DM值,今日股价波动幅度大于昨日股价波动幅部分的最大值,可能是创高价的部分或创低价的部分:如果今日股价波动幅度较前一日小,则DM = 0.” 若股价高点持续走高,为上涨趋势

swift中文文档- 类型转换

未翻译完 待续(英语烂,求斧正) Type Casting 类型转换 Type casting is a way to check the type of an instance, and/or to treat that instance as if it is a different superclass or subclass from somewhere else in its own class hierarchy. 类型转换是检测实例所属类型的一种方法,和/或 去对待实例好像它是一个