> 函数名:DX
名称:动向指标或趋向指标
简介:通过分析股票价格在涨跌过程中买卖双方力量均衡点的变化情况,即多空双方的力量的变化受价格波动的影响而发生由均衡到失衡的循环过程,从而提供对趋势判断依据的一种技术指标。
分析和应用:
[百度百科](https://baike.baidu.com/item/DMI%E6%8C%87%E6%A0%87/3423254?fr=aladdin)
[维基百科](https://zh.wikipedia.org/wiki/%E5%8B%95%E5%90%91%E6%8C%87%E6%95%B8)
[同花顺学院](http://www.iwencai.com/school/search?cg=100&w=DMI)
NOTE: The ``DX`` function has an unstable period.
```python
real = DX(high, low, close, timeperiod=14)
```
Learn more about the Directional Movement Index at [tadoc.org](http://www.tadoc.org/indicator/DX.htm).
### MACD - Moving Average Convergence/Divergence
> 函数名:MACD
名称:平滑异同移动平均线
简介:利用收盘价的短期(常用为12日)指数移动平均线与长期(常用为26日)指数移动平均线之间的聚合与分离状况,对买进、卖出时机作出研判的技术指标。
分析和应用:[百度百科](https://baike.baidu.com/item/MACD%E6%8C%87%E6%A0%87?fromtitle=MACD&fromid=3334786)
[维基百科](https://zh.wikipedia.org/wiki/MACD)
[同花顺学院](http://www.iwencai.com/school/search?cg=100&w=MACD)
```python
macd, macdsignal, macdhist = MACD(close, fastperiod=12, slowperiod=26, signalperiod=9)
```
Learn more about the Moving Average Convergence/Divergence at [tadoc.org](http://www.tadoc.org/indicator/MACD.htm).
### MACDEXT - MACD with controllable MA type