@@ -110,32 +110,68 @@ Learn more about the Balance Of Power at [tadoc.org](http://www.tadoc.org/indica
110
110
* 5.CCI指标曲线从下向上突破+100线而进入非常态区间(超买区)时,表明市场价格已经脱离常态而进入强势状态,如果伴随较大的市场交投,应及时介入成功率将很大。
111
111
* 6.CCI指标曲线从下向上突破+100线而进入非常态区间(超买区)后,只要CCI指标曲线一直朝上运行,表明价格依然保持强势可以继续持有待涨。但是,如果在远离+100线的地方开始掉头向下时,则表明市场价格的强势状态将可能难以维持,涨势可能转弱,应考虑卖出。如果前期的短期涨幅过高同时价格回落时交投活跃,则应该果断逢高卖出或做空。
112
112
* CCI主要是在超买和超卖区域发生作用,对急涨急跌的行情检测性相对准确。非常适用于股票、外汇、贵金属等市场的短期操作。[ 1]
113
+
113
114
``` python
114
115
real = CCI(high, low, close, timeperiod = 14 )
115
116
```
116
117
117
118
Learn more about the Commodity Channel Index at [ tadoc.org] ( http://www.tadoc.org/indicator/CCI.htm ) .
118
- ### CMO - Chande Momentum Oscillator
119
+ ### CMO - Chande Momentum Oscillator 钱德动量摆动指标
120
+
121
+ > 函数名:CMO
122
+ 名称:钱德动量摆动指标
123
+ 简介:与其他动量指标摆动指标如相对强弱指标(RSI)和随机指标(KDJ)不同,钱德动量指标在计算公式的分子中采用上涨日和下跌日的数据。
124
+ 计算公式:CMO=(Su-Sd)* 100/(Su+Sd)
125
+ 其中:Su是今日收盘价与昨日收盘价(上涨日)差值加总。若当日下跌,则增加值为0;Sd是今日收盘价与做日收盘价(下跌日)差值的绝对值加总。若当日上涨,则增加值为0;
126
+
127
+
128
+ #### 指标应用
129
+ * 本指标类似RSI指标。
130
+ * 当本指标下穿-50水平时是买入信号,上穿+50水平是卖出信号。
131
+ * 钱德动量摆动指标的取值介于-100和100之间。
132
+ * 本指标也能给出良好的背离信号。
133
+ * 当股票价格创出新低而本指标未能创出新低时,出现牛市背离;
134
+ * 当股票价格创出新高而本指标未能创出新高时,当出现熊市背离时。
135
+ * 我们可以用移动均值对该指标进行平滑。
136
+
119
137
NOTE: The `` CMO `` function has an unstable period.
120
138
``` python
121
139
real = CMO(close, timeperiod = 14 )
122
140
```
123
141
124
142
Learn more about the Chande Momentum Oscillator at [ tadoc.org] ( http://www.tadoc.org/indicator/CMO.htm ) .
125
- ### DX - Directional Movement Index
143
+ ### DX - Directional Movement Index DMI指标又叫动向指标或趋向指标
144
+
145
+ > 函数名:DX
146
+ 名称:动向指标或趋向指标
147
+ 简介:通过分析股票价格在涨跌过程中买卖双方力量均衡点的变化情况,即多空双方的力量的变化受价格波动的影响而发生由均衡到失衡的循环过程,从而提供对趋势判断依据的一种技术指标。
148
+ 分析和应用:[ 百度百科] ( https://baike.baidu.com/item/DMI%E6%8C%87%E6%A0%87/3423254?fr=aladdin )
149
+ [ 维基百科] ( https://zh.wikipedia.org/wiki/%E5%8B%95%E5%90%91%E6%8C%87%E6%95%B8 )
150
+ [ 同花顺学院] ( http://www.iwencai.com/school/search?cg=100&w=DMI )
151
+
126
152
NOTE: The `` DX `` function has an unstable period.
127
153
``` python
128
154
real = DX(high, low, close, timeperiod = 14 )
129
155
```
130
156
131
157
Learn more about the Directional Movement Index at [ tadoc.org] ( http://www.tadoc.org/indicator/DX.htm ) .
132
158
### MACD - Moving Average Convergence/Divergence
159
+ > 函数名:MACD
160
+ 名称:平滑异同移动平均线
161
+ 简介:利用收盘价的短期(常用为12日)指数移动平均线与长期(常用为26日)指数移动平均线之间的聚合与分离状况,对买进、卖出时机作出研判的技术指标。
162
+ 分析和应用:[ 百度百科] ( https://baike.baidu.com/item/MACD%E6%8C%87%E6%A0%87?fromtitle=MACD&fromid=3334786 )
163
+ [ 维基百科] ( https://zh.wikipedia.org/wiki/MACD )
164
+ [ 同花顺学院] ( http://www.iwencai.com/school/search?cg=100&w=MACD )
133
165
``` python
134
166
macd, macdsignal, macdhist = MACD(close, fastperiod = 12 , slowperiod = 26 , signalperiod = 9 )
135
167
```
136
168
137
169
Learn more about the Moving Average Convergence/Divergence at [ tadoc.org] ( http://www.tadoc.org/indicator/MACD.htm ) .
138
170
### MACDEXT - MACD with controllable MA type
171
+
172
+ > 函数名:MACDEXT (这个是干啥的(⊙o⊙)?)
173
+ 名称:
174
+
139
175
``` python
140
176
macd, macdsignal, macdhist = MACDEXT(close, fastperiod = 12 , fastmatype = 0 , slowperiod = 26 , slowmatype = 0 , signalperiod = 9 , signalmatype = 0 )
141
177
```
@@ -145,28 +181,56 @@ macd, macdsignal, macdhist = MACDEXT(close, fastperiod=12, fastmatype=0, slowper
145
181
macd, macdsignal, macdhist = MACDFIX(close, signalperiod = 9 )
146
182
```
147
183
148
- ### MFI - Money Flow Index
184
+ ### MFI - Money Flow Index 资金流量指标
185
+
186
+ > 函数名:MFI
187
+ 名称:资金流量指标
188
+ 简介:属于量价类指标,反映市场的运行趋势
189
+ 分析和应用:[ 百度百科] ( https://baike.baidu.com/item/mfi/7429225?fr=aladdin )
190
+ [ 同花顺学院] ( http://www.iwencai.com/school/search?cg=100&w=MFI )
149
191
NOTE: The `` MFI `` function has an unstable period.
150
192
``` python
151
193
real = MFI(high, low, close, volume, timeperiod = 14 )
152
194
```
153
195
154
196
Learn more about the Money Flow Index at [ tadoc.org] ( http://www.tadoc.org/indicator/MFI.htm ) .
155
197
### MINUS_DI - Minus Directional Indicator
198
+ > 函数名:DMI 中的DI指标 负方向指标
199
+ 名称:下升动向值
200
+ 简介:通过分析股票价格在涨跌过程中买卖双方力量均衡点的变化情况,即多空双方的力量的变化受价格波动的影响而发生由均衡到失衡的循环过程,从而提供对趋势判断依据的一种技术指标。
201
+ 分析和应用:[ 百度百科] ( https://baike.baidu.com/item/DMI%E6%8C%87%E6%A0%87/3423254?fr=aladdin )
202
+ [ 维基百科] ( https://zh.wikipedia.org/wiki/%E5%8B%95%E5%90%91%E6%8C%87%E6%95%B8 )
203
+ [ 同花顺学院] ( http://www.iwencai.com/school/search?cg=100&w=DMI )
156
204
NOTE: The `` MINUS_DI `` function has an unstable period.
157
205
``` python
158
206
real = MINUS_DI(high, low, close, timeperiod = 14 )
159
207
```
160
208
161
209
Learn more about the Minus Directional Indicator at [ tadoc.org] ( http://www.tadoc.org/indicator/MINUS_DI.htm ) .
162
210
### MINUS_DM - Minus Directional Movement
211
+
212
+ > 函数名:MINUS_DM
213
+ 名称: 上升动向值 DMI中的DM代表正趋向变动值即上升动向值
214
+ 简介:通过分析股票价格在涨跌过程中买卖双方力量均衡点的变化情况,即多空双方的力量的变化受价格波动的影响而发生由均衡到失衡的循环过程,从而提供对趋势判断依据的一种技术指标。
215
+ 分析和应用:[ 百度百科] ( https://baike.baidu.com/item/DMI%E6%8C%87%E6%A0%87/3423254?fr=aladdin )
216
+ [ 维基百科] ( https://zh.wikipedia.org/wiki/%E5%8B%95%E5%90%91%E6%8C%87%E6%95%B8 )
217
+ [ 同花顺学院] ( http://www.iwencai.com/school/search?cg=100&w=DMI )
218
+
163
219
NOTE: The `` MINUS_DM `` function has an unstable period.
164
220
``` python
165
221
real = MINUS_DM(high, low, timeperiod = 14 )
166
222
```
167
223
168
224
Learn more about the Minus Directional Movement at [ tadoc.org] ( http://www.tadoc.org/indicator/MINUS_DM.htm ) .
169
- ### MOM - Momentum
225
+ ### MOM - Momentum 动量
226
+
227
+ > 函数名:MOM
228
+ 名称: 上升动向值
229
+ 简介:投资学中意思为续航,指股票(或经济指数)持续增长的能力。研究发现,赢家组合在牛市中存在着正的动量效应,输家组合在熊市中存在着负的动量效应。
230
+ 分析和应用:
231
+ [ 维基百科] ( https://zh.wikipedia.org/wiki/%E5%8B%95%E9%87%8F%E6%8C%87%E6%A8%99 )
232
+ [ 同花顺学院] ( http://www.iwencai.com/yike/detail/auid/cb18b2dbe2f455e6 )
233
+
170
234
``` python
171
235
real = MOM(close, timeperiod = 10 )
172
236
```
@@ -186,13 +250,28 @@ real = PLUS_DM(high, low, timeperiod=14)
186
250
```
187
251
188
252
Learn more about the Plus Directional Movement at [ tadoc.org] ( http://www.tadoc.org/indicator/PLUS_DM.htm ) .
189
- ### PPO - Percentage Price Oscillator
253
+ ### PPO - Percentage Price Oscillator 价格震荡百分比指数
254
+
255
+ > 函数名:PPO
256
+ 名称: 价格震荡百分比指数
257
+ 简介:价格震荡百分比指标(PPO)是一个和MACD指标非常接近的指标。
258
+ PPO标准设定和MACD设定非常相似:12,26,9和PPO,和MACD一样说明了两条移动平均线的差距,但是它们有一个差别是PPO是用百分比说明。
259
+ 分析和应用:
260
+ [ 参考] ( http://blog.sina.com.cn/s/blog_7542a31c0101aux9.html )
261
+
190
262
``` python
191
263
real = PPO(close, fastperiod = 12 , slowperiod = 26 , matype = 0 )
192
264
```
193
265
194
266
Learn more about the Percentage Price Oscillator at [ tadoc.org] ( http://www.tadoc.org/indicator/PPO.htm ) .
195
- ### ROC - Rate of change : ((price/prevPrice)-1)* 100
267
+ ### ROC - Rate of change : ((price/prevPrice)-1)* 100 变动率指标
268
+
269
+ > 函数名:ROC
270
+ 名称: 变动率指标
271
+ 简介:ROC是由当天的股价与一定的天数之前的某一天股价比较,其变动速度的大小,来反映股票市变动的快慢程度
272
+ 分析和应用:[ 百度百科] ( https://baike.baidu.com/item/ROC%E6%8C%87%E6%A0%87/3081705?fr=aladdin )
273
+ [ 同花顺学院] ( http://www.iwencai.com/yike/detail/auid/6ac184fdb20d2f59 )
274
+
196
275
``` python
197
276
real = ROC(close, timeperiod = 10 )
198
277
```
@@ -216,14 +295,23 @@ real = ROCR100(close, timeperiod=10)
216
295
```
217
296
218
297
Learn more about the Rate of change ratio 100 scale: (price/prevPrice)* 100 at [ tadoc.org] ( http://www.tadoc.org/indicator/ROCR100.htm ) .
219
- ### RSI - Relative Strength Index
298
+ ### RSI - Relative Strength Index 相对强弱指数
299
+
300
+ > 函数名:RSI
301
+ 名称:相对强弱指数
302
+ 简介:是通过比较一段时期内的平均收盘涨数和平均收盘跌数来分析市场买沽盘的意向和实力,从而作出未来市场的走势。
303
+ 分析和应用:[ 百度百科] ( https://baike.baidu.com/item/RSI/6130115 )
304
+ [ 维基百科] ( https://zh.wikipedia.org/wiki/%E7%9B%B8%E5%B0%8D%E5%BC%B7%E5%BC%B1%E6%8C%87%E6%95%B8 )
305
+ [ 同花顺学院] ( http://www.iwencai.com/yike/detail/auid/6a280c6cebcf140a )
306
+
220
307
NOTE: The `` RSI `` function has an unstable period.
221
308
``` python
222
309
real = RSI(close, timeperiod = 14 )
223
310
```
224
311
225
312
Learn more about the Relative Strength Index at [ tadoc.org] ( http://www.tadoc.org/indicator/RSI.htm ) .
226
- ### STOCH - Stochastic
313
+ ### STOCH - Stochastic KDJ指标中的KD指标
314
+
227
315
``` python
228
316
slowk, slowd = STOCH(high, low, close, fastk_period = 5 , slowk_period = 3 , slowk_matype = 0 , slowd_period = 3 , slowd_matype = 0 )
229
317
```
@@ -248,13 +336,28 @@ real = TRIX(close, timeperiod=30)
248
336
```
249
337
250
338
Learn more about the 1-day Rate-Of-Change (ROC) of a Triple Smooth EMA at [ tadoc.org] ( http://www.tadoc.org/indicator/TRIX.htm ) .
251
- ### ULTOSC - Ultimate Oscillator
339
+ ### ULTOSC - Ultimate Oscillator 终极波动指标
340
+
341
+ > 函数名:ULTOSC
342
+ 名称:终极波动指标
343
+ 简介:UOS是一种多方位功能的指标,除了趋势确认及超买超卖方面的作用之外,它的“突破”讯号不仅可以提供最适当的交易时机之外,更可以进一步加强指标的可靠度。
344
+ 分析和应用:[ 百度百科] ( https://baike.baidu.com/item/%E7%BB%88%E6%9E%81%E6%B3%A2%E5%8A%A8%E6%8C%87%E6%A0%87/1982936?fr=aladdin&fromid=12610066&fromtitle=%E7%BB%88%E6%9E%81%E6%8C%87%E6%A0%87 )
345
+ [ 同花顺学院] ( http://www.iwencai.com/yike/detail/auid/e89b98d39da975e4 )
346
+
252
347
``` python
253
348
real = ULTOSC(high, low, close, timeperiod1 = 7 , timeperiod2 = 14 , timeperiod3 = 28 )
254
349
```
255
350
256
351
Learn more about the Ultimate Oscillator at [ tadoc.org] ( http://www.tadoc.org/indicator/ULTOSC.htm ) .
257
- ### WILLR - Williams' %R
352
+ ### WILLR - Williams' %R 威廉指标
353
+
354
+ > 函数名:WILLR
355
+ 名称:威廉指标
356
+ 简介:WMS表示的是市场处于超买还是超卖状态。股票投资分析方法主要有如下三种:基本分析、技术分析、演化分析。在实际应用中,它们既相互联系,又有重要区别。
357
+ 分析和应用:[ 百度百科] ( https://baike.baidu.com/item/%E5%A8%81%E5%BB%89%E6%8C%87%E6%A0%87?fr=aladdin )
358
+ [ 维基百科] ( https://zh.wikipedia.org/wiki/%E5%A8%81%E5%BB%89%E6%8C%87%E6%A8%99 )
359
+ [ 同花顺学院] ( http://www.iwencai.com/yike/detail/auid/967febb0316c57c1 )
360
+
258
361
``` python
259
362
real = WILLR(high, low, close, timeperiod = 14 )
260
363
```
0 commit comments