Overlap Studies Functions 重叠指标

BBANDS - Bollinger Bands

函数名:BBANDS
名称: 布林线指标
简介:其利用统计原理,求出股价的标准差及其信赖区间,从而确定股价的波动范围及未来走势,利用波带显示股价的安全高低价位,因而也被称为布林带。
分析和应用:
百度百科
同花顺学院

upperband, middleband, lowerband = BBANDS(close, timeperiod=5, nbdevup=2, nbdevdn=2, matype=0)

Learn more about the Bollinger Bands at tadoc.org.

DEMA - Double Exponential Moving Average 双移动平均线

函数名:DEMA
名称: 双移动平均线
简介:两条移动平均线来产生趋势信号,较长期者用来识别趋势,较短期者用来选择时机。正是两条平均线及价格三者的相互作用,才共同产生了趋势信号。
分析和应用:
百度百科
同花顺学院

real = DEMA(close, timeperiod=30)

Learn more about the Double Exponential Moving Average at tadoc.org.

EMA - Exponential Moving Average

函数名:EMA
名称: 指数平均数
简介:是一种趋向类指标,其构造原理是仍然对价格收盘价进行算术平均,并根据计算结果来进行分析,用于判断价格未来走势的变动趋势。
百度百科
同花顺学院

NOTE: The EMA function has an unstable period.

real = EMA(close, timeperiod=30)

Learn more about the Exponential Moving Average at tadoc.org.

HT_TRENDLINE - Hilbert Transform - Instantaneous Trendline

NOTE: The HT_TRENDLINE function has an unstable period.

函数名:HT_TRENDLINE
名称: 希尔伯特瞬时变换
简介:是一种趋向类指标,其构造原理是仍然对价格收盘价进行算术平均,并根据计算结果来进行分析,用于判断价格未来走势的变动趋势。
百度文库

real = HT_TRENDLINE(close)

Learn more about the Hilbert Transform - Instantaneous Trendline at tadoc.org.

KAMA - Kaufman Adaptive Moving Average 考夫曼的自适应移动平均线

函数名:KAMA
名称: 考夫曼的自适应移动平均线
简介:短期均线贴近价格走势,灵敏度高,但会有很多噪声,产生虚假信号;长期均线在判断趋势上一般比较准确
,但是长期均线有着严重滞后的问题。我们想得到这样的均线,当价格沿一个方向快速移动时,短期的移动
平均线是最合适的;当价格在横盘的过程中,长期移动平均线是合适的。

参考1
参考2

NOTE: The KAMA function has an unstable period.

real = KAMA(close, timeperiod=30)

Learn more about the Kaufman Adaptive Moving Average at tadoc.org.

MA - Moving average 移动平均线

函数名:MA
名称: 移动平均线
简介:移动平均线,Moving Average,简称MA,原本的意思是移动平均,由于我们将其制作成线形,所以一般称之为移动平均线,简称均线。它是将某一段时间的收盘价之和除以该周期。 比如日线MA5指5天内的收盘价除以5 。
百度百科
同花顺学院

real = MA(close, timeperiod=30, matype=0)

MAMA - MESA Adaptive Moving Average

NOTE: The MAMA function has an unstable period.

mama, fama = MAMA(close, fastlimit=0, slowlimit=0)

Learn more about the MESA Adaptive Moving Average at tadoc.org.

MAVP - Moving average with variable period

real = MAVP(close, periods, minperiod=2, maxperiod=30, matype=0)

MIDPOINT - MidPoint over period

real = MIDPOINT(close, timeperiod=14)

Learn more about the MidPoint over period at tadoc.org.

MIDPRICE - Midpoint Price over period

real = MIDPRICE(high, low, timeperiod=14)

Learn more about the Midpoint Price over period at tadoc.org.

SAR - Parabolic SAR 抛物线指标

函数名:SAR
名称: 抛物线指标
简介:抛物线转向也称停损点转向,是利用抛物线方式,随时调整停损点位置以观察买卖点。由于停损点(又称转向点SAR)以弧形的方式移动,故称之为抛物线转向指标 。
百度百科
同花顺学院

real = SAR(high, low, acceleration=0, maximum=0)

Learn more about the Parabolic SAR at tadoc.org.

SAREXT - Parabolic SAR - Extended

real = SAREXT(high, low, startvalue=0, offsetonreverse=0, accelerationinitlong=0, accelerationlong=0, accelerationmaxlong=0, accelerationinitshort=0, accelerationshort=0, accelerationmaxshort=0)

SMA - Simple Moving Average 简单移动平均线

函数名:SMA (不明和ma有什么区别)
名称: 移动平均线
简介:移动平均线,Moving Average,简称MA,原本的意思是移动平均,由于我们将其制作成线形,所以一般称之为移动平均线,简称均线。它是将某一段时间的收盘价之和除以该周期。 比如日线MA5指5天内的收盘价除以5 。
百度百科
同花顺学院

real = SMA(close, timeperiod=30)

Learn more about the Simple Moving Average at tadoc.org.

T3 - Triple Exponential Moving Average (T3) 三重指数移动平均线

函数名:T3
名称:三重指数移动平均线
简介:TRIX长线操作时采用本指标的讯号,长时间按照本指标讯号交易,获利百分比大于损失百分比,利润相当可观。 比如日线MA5指5天内的收盘价除以5 。
百度百科
同花顺学院

NOTE: The T3 function has an unstable period.

real = T3(close, timeperiod=5, vfactor=0)

Learn more about the Triple Exponential Moving Average (T3) at tadoc.org.

TEMA - Triple Exponential Moving Average

函数名:TEMA(T3 区别?)
名称:三重指数移动平均线

real = TEMA(close, timeperiod=30)

Learn more about the Triple Exponential Moving Average at tadoc.org.

TRIMA - Triangular Moving Average

real = TRIMA(close, timeperiod=30)

Learn more about the Triangular Moving Average at tadoc.org.

WMA - Weighted Moving Average 移动加权平均法

函数名:WMA
名称:移动加权平均法
简介:移动加权平均法是指以每次进货的成本加上原有库存存货的成本,除以每次进货数量与原有库存存货的数量之和,据以计算加权平均单位成本,以此为基础计算当月发出存货的成本和期末存货的成本的一种方法。
百度百科
同花顺学院

real = WMA(close, timeperiod=30)

Learn more about the Weighted Moving Average at tadoc.org.

Documentation Index
FLOAT_RIGHTAll Function Groups

作者:HuaRongSAO
链接:https://www.jianshu.com/p/050664432704
來源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。

talib 中文文档(七):Overlap Studies Functions的更多相关文章

  1. talib 中文文档(三):talib 方法大全

    Function API Examples Similar to TA-Lib, the function interface provides a lightweight wrapper of th ...

  2. TA-Lib中文文档(一):快速开始

    TA-Lib 简介: 这是一个Python 金融指数处理库TA-LIB,他是基于 Cython 而不是 SWIG. TA-Lib is widely used by trading software ...

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

    Documentation 安装和问题 快速使用 高级应用 方法分类 Overlap Studies 重叠的研究 Momentum Indicators 动量指标 Volume Indicators ...

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

    Cycle Indicator Functions 不是很懂,欢迎指教 HT_DCPERIOD - Hilbert Transform - Dominant Cycle Period 函数名:HT_D ...

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

    Momentum Indicator Functions ADX - Average Directional Movement Index 函数名:ADX 名称:平均趋向指数 简介:使用ADX指标,指 ...

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

    Volatility Indicator Functions 波动率指标函数 ATR - Average True Range 函数名:ATR 名称:真实波动幅度均值 简介:真实波动幅度均值(ATR) ...

  7. talib 中文文档(十二):Pattern Recognition Functions K线模式识别,形态识别

    Pattern Recognition Functions K线模式识别,形态识别 CDL2CROWS - Two Crows 函数名:CDL2CROWS 名称:Two Crows 两只乌鸦 简介:三 ...

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

    Math Operator Functions 数学运算符函数 ADD - Vector Arithmetic Add 函数名:ADD 名称:向量加法运算 real = ADD(high, low) ...

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

    Price Transform Functions AVGPRICE - Average Price 函数名:AVGPRICE 名称:平均价格函数 real = AVGPRICE(open, high ...

随机推荐

  1. asp.net 后端验证

    using EntryRegistration.Filters; using EntryRegistration.Models.Entity; using System; using System.C ...

  2. php如何定时执行任务

    PHP的实现决定了它没有Java和.Net这种AppServer的概念, 而http协议是一个无状态的协议, php只能被用户触发, 被调用, 调用后会自动退出内存, 没有常驻内存, 就没有办法准确的 ...

  3. el表达式取值优先级

    不同容器中存在同名值时,从作用范围小到大的顺序依次尝试取值:pageContext->request->session->application

  4. Loadrunner中socket协议中的三个关联函数

    这3个函数其实都可以动态获取运行中收到的数据包中的数据,只要跟在要获取的收取数据包脚本后面即可.其中:lrs_save_searched_string和lrs_save_param如果buf_desc ...

  5. 在程序中使用命令行的方式来调用py文件

    做这个主要是程序可以做到直接调用一个脚本,而不是从脚本中把类或者函数import出来这样调用,比如我们写的python命令行文件,让java来调用,让c++来调用,都是可以的.这样不需要整个语言都用p ...

  6. Android Timer的应用示例

    package com.hyzhou.timerdemo1; import java.util.Timer; import java.util.TimerTask; import android.os ...

  7. Access数据操作-02

    数据库连接 MDB文件 :Provider=Microsoft.Jet.OLEDB.4.0;Data Source=*.mdb ;Persist Security Info=False; AccDB文 ...

  8. python2.0_day18_Django自带的用户认证模块的使用

    用户验证我们基于一个项目来学习利用Django框架中的user表实现用户认证Django练习小项目:学员管理系统设计开发 项目需求: 1.分讲师\学员\课程顾问角色, 2.学员可以属于多个班级,学员成 ...

  9. Python 文件类型

    Python的文件类型分为以下几种: 1. 源代码文件,也就是以 .py 为扩展名的文件,由 python 程序解释,不需要编译 2. 字节代码文件,python 源代码文件经过编译后生成的扩展名为 ...

  10. 基于麒麟座开发板2.0的MQTT实现例程

    链接--->https://sanwen8.cn/p/649shZ1.html OneNET现已全面适配标准MQTT协议,相信这一功能的增加会**便于开发者进行设备的接入. OneNET提供了M ...