|
1 | 1 | # Cycle Indicator Functions
|
| 2 | +> 不是很懂,欢迎指教 |
2 | 3 | ### HT_DCPERIOD - Hilbert Transform - Dominant Cycle Period
|
| 4 | +> 函数名:HT_DCPERIOD |
| 5 | +名称: 希尔伯特变换-主导周期 |
| 6 | +简介:将价格作为信息信号,计算价格处在的周期的位置,作为择时的依据。 |
| 7 | + |
| 8 | +[文库文档](https://wenku.baidu.com/view/0e35f6eead51f01dc281f18e.md) |
| 9 | + |
3 | 10 | NOTE: The ``HT_DCPERIOD`` function has an unstable period.
|
4 | 11 | ```python
|
5 | 12 | real = HT_DCPERIOD(close)
|
6 | 13 | ```
|
7 | 14 |
|
8 | 15 | Learn more about the Hilbert Transform - Dominant Cycle Period at [tadoc.org](http://www.tadoc.org/indicator/HT_DCPERIOD.htm).
|
9 | 16 | ### HT_DCPHASE - Hilbert Transform - Dominant Cycle Phase
|
| 17 | + |
| 18 | +> 函数名:HT_DCPHASE |
| 19 | +名称: 希尔伯特变换-主导循环阶段 |
| 20 | + |
| 21 | + |
10 | 22 | NOTE: The ``HT_DCPHASE`` function has an unstable period.
|
11 | 23 | ```python
|
12 | 24 | real = HT_DCPHASE(close)
|
13 | 25 | ```
|
14 | 26 |
|
15 | 27 | Learn more about the Hilbert Transform - Dominant Cycle Phase at [tadoc.org](http://www.tadoc.org/indicator/HT_DCPHASE.htm).
|
16 | 28 | ### HT_PHASOR - Hilbert Transform - Phasor Components
|
| 29 | +> 函数名:HT_DCPHASE |
| 30 | +名称: 希尔伯特变换-希尔伯特变换相量分量 |
| 31 | + |
17 | 32 | NOTE: The ``HT_PHASOR`` function has an unstable period.
|
18 | 33 | ```python
|
19 | 34 | inphase, quadrature = HT_PHASOR(close)
|
20 | 35 | ```
|
21 | 36 |
|
22 | 37 | Learn more about the Hilbert Transform - Phasor Components at [tadoc.org](http://www.tadoc.org/indicator/HT_PHASOR.htm).
|
23 | 38 | ### HT_SINE - Hilbert Transform - SineWave
|
| 39 | + |
| 40 | +> 函数名:HT_DCPHASE |
| 41 | +名称: 希尔伯特变换-正弦波 |
24 | 42 | NOTE: The ``HT_SINE`` function has an unstable period.
|
25 | 43 | ```python
|
26 | 44 | sine, leadsine = HT_SINE(close)
|
27 | 45 | ```
|
28 | 46 |
|
29 | 47 | Learn more about the Hilbert Transform - SineWave at [tadoc.org](http://www.tadoc.org/indicator/HT_SINE.htm).
|
| 48 | + |
30 | 49 | ### HT_TRENDMODE - Hilbert Transform - Trend vs Cycle Mode
|
31 |
| -NOTE: The ``HT_TRENDMODE`` function has an unstable period. |
| 50 | + |
| 51 | +> 函数名:HT_DCPHASE |
| 52 | +名称: 希尔伯特变换-趋势与周期模式 |
| 53 | +NOTE: The ``HT_TRENDMODE`` function has an unstable period. |
| 54 | + |
32 | 55 | ```python
|
33 | 56 | integer = HT_TRENDMODE(close)
|
34 | 57 | ```
|
35 | 58 |
|
36 | 59 | Learn more about the Hilbert Transform - Trend vs Cycle Mode at [tadoc.org](http://www.tadoc.org/indicator/HT_TRENDMODE.htm).
|
37 | 60 |
|
38 |
| -[Documentation Index](../doc_index.html) |
39 |
| -[FLOAT_RIGHTAll Function Groups](../funcs.html) |
| 61 | +[文档](../doc_index.md) |
| 62 | +[FLOAT_RIGHTAll Function Groups](../funcs.md) |
0 commit comments