- TA-Lib指标(1/10) Overlap Studies F
- TA-Lib指标(10/10) Math Operator F
- TA-Lib指标(3/10)Volume Indicator F
- talib 中文文档(七):Overlap Studies Fu
- TA-Lib指标(4/10)Volatility Indicat
- TA-Lib指标(7/10) Pattern Recogniti
- TA-Lib指标(8/10) Statistic Functio
- TA-Lib指标(2/10)Momentum Indicator
- 第十四课:Window服务器安装ta-lib技术指标库
- MacOS上安装python64位的ta-lib库
Overlap Studies Functions
BBANDS - Bollinger Bands
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
real = DEMA(close, timeperiod=30)
Learn more about the Double Exponential Moving Average at tadoc.org.
EMA - Exponential Moving Average
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.
real = HT_TRENDLINE(close)
Learn more about the Hilbert Transform - Instantaneous Trendline at tadoc.org.
KAMA - Kaufman Adaptive Moving Average
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
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
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
real = SMA(close, timeperiod=30)
Learn more about the Simple Moving Average at tadoc.org.
T3 - Triple Exponential Moving Average (T3)
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
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
real = WMA(close, timeperiod=30)
Learn more about the Weighted Moving Average at tadoc.org.
网友评论