TA-Lib 建议增加这个金融软件库
TA-Lib金融软件包是目前金融行业最常用的技术指标函数库,目前
已经有Python版本接口。
举例常用函数:
1. ACCDIST(df,n):积累/分配(Accumulation/Distribution)。
2. ADX(df,n,n_ADX):定向运动平均指数(Average Directional
Movement Index)。
3. ATR(df,n):平均真实范围(Average True Range)。
4. BBANDS(df,n):布林带(Bollinger Bands)。
5. CCI(df,n):商品通道指数(Commodity Channel Index)。
6. COPP(df,n):Coppock曲线(Coppock Curve)。
7. Chaikin(df):蔡金振荡器(Chaikin Oscillator)。
8. DONCH(df,n):奇安通道(Donchian Channel)。
9. EMA(df,n):指数移动平均(Exponential Moving Average)。
10. EOM(df,n):缓解运动(Ease of Movement)。
11. FORCE(df,n):力指数(Force Index)。
12. KELCH(df,n):Keltner通道(Keltner Channel)。
13. KST(df,r1,r2,r3,r4,n1,n2,n3,n4):KST振荡器(KST Oscillator)。
14. MA(df,n):移动平均(Moving Average)。
15. MACD(df,n_fast,n_slow):MACD指标信号和MACD的区别(MACD Signal and MACD difference)。
16. MFI(df,n):资金流量指标和比率(Money Flow Index and Ratio)。
17. MOM(df,n):动量(Momentum)。
18. MassI(df):质量指数(Mass Index)。
19. OBV(df,n):平衡量(On-balance Volume)。
20. PPSR(df):支点、支撑和阻力(Pivot Points,Supports and Resistances)。
21. ROC(df,n):变化率(Rate of Change)。
22. RSI(df,n):相对强弱指标(Relative Strength Index)。
23. STDDEV(df,n):标准偏差(Standard Deviation)。
24. STO(df,n):随机指标D(Stochastic oscillator %D)。
25. STOK(df):随机指标K(Stochastic oscillator %K)。
26. TRIX(df,n):矩阵(Trix)。
27. TSI(df,r,s):真实强度指数(True Strength Index)。
28. ULTOSC(df):最终振荡器(Ultimate Oscillator)。
29. Vortex(df,n):涡指标(Vortex Indicator)
等等常用指标函数。我只是举了一些常用的,引入这个库还有很多函数指标,大家都可以慢慢研究。
2017-12-26