- TA-Lib指标(8/10) Statistic Functio
- TA-Lib指标(10/10) Math Operator F
- TA-Lib指标(4/10)Volatility Indicat
- TA-Lib指标(7/10) Pattern Recogniti
- TA-Lib指标(2/10)Momentum Indicator
- 第十四课:Window服务器安装ta-lib技术指标库
- TA-Lib指标(9/10) Math Transform Fu
- TA-Lib指标(6/10)Cycle Indicator Fu
- TA-Lib指标(1/10) Overlap Studies F
- TA-Lib指标(3/10)Volume Indicator F
Statistic Functions
BETA - Beta
real = BETA(high, low, timeperiod=5)
Learn more about the Beta at tadoc.org.
CORREL - Pearson's Correlation Coefficient (r)
real = CORREL(high, low, timeperiod=30)
Learn more about the Pearson's Correlation Coefficient (r) at tadoc.org.
LINEARREG - Linear Regression
real = LINEARREG(close, timeperiod=14)
Learn more about the Linear Regression at tadoc.org.
LINEARREG_ANGLE - Linear Regression Angle
real = LINEARREG_ANGLE(close, timeperiod=14)
Learn more about the Linear Regression Angle at tadoc.org.
LINEARREG_INTERCEPT - Linear Regression Intercept
real = LINEARREG_INTERCEPT(close, timeperiod=14)
Learn more about the Linear Regression Intercept at tadoc.org.
LINEARREG_SLOPE - Linear Regression Slope
real = LINEARREG_SLOPE(close, timeperiod=14)
Learn more about the Linear Regression Slope at tadoc.org.
STDDEV - Standard Deviation
real = STDDEV(close, timeperiod=5, nbdev=1)
Learn more about the Standard Deviation at tadoc.org.
TSF - Time Series Forecast
real = TSF(close, timeperiod=14)
Learn more about the Time Series Forecast at tadoc.org.
VAR - Variance
real = VAR(close, timeperiod=5, nbdev=1)
Learn more about the Variance at tadoc.org.
网友评论