Skip to content

Commit a41ca18

Browse files
committed
完成翻译
1 parent 4c9a72f commit a41ca18

12 files changed

+330
-27
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.idea/

abstract.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,4 @@ ma20 = SMA(20)
104104

105105
欲了解更多详情,请看 [code](https://github.com/mrjbq7/ta-lib/blob/master/talib/abstract.pyx#L46).
106106

107-
[文档](doc_index.html)
107+
[文档](doc_index.md)

func_groups/cycle_indicators.md

+26-3
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,62 @@
11
# Cycle Indicator Functions
2+
> 不是很懂,欢迎指教
23
### HT_DCPERIOD - Hilbert Transform - Dominant Cycle Period
4+
> 函数名:HT_DCPERIOD
5+
名称: 希尔伯特变换-主导周期
6+
简介:将价格作为信息信号,计算价格处在的周期的位置,作为择时的依据。
7+
8+
[文库文档](https://wenku.baidu.com/view/0e35f6eead51f01dc281f18e.md)
9+
310
NOTE: The ``HT_DCPERIOD`` function has an unstable period.
411
```python
512
real = HT_DCPERIOD(close)
613
```
714

815
Learn more about the Hilbert Transform - Dominant Cycle Period at [tadoc.org](http://www.tadoc.org/indicator/HT_DCPERIOD.htm).
916
### HT_DCPHASE - Hilbert Transform - Dominant Cycle Phase
17+
18+
> 函数名:HT_DCPHASE
19+
名称: 希尔伯特变换-主导循环阶段
20+
21+
1022
NOTE: The ``HT_DCPHASE`` function has an unstable period.
1123
```python
1224
real = HT_DCPHASE(close)
1325
```
1426

1527
Learn more about the Hilbert Transform - Dominant Cycle Phase at [tadoc.org](http://www.tadoc.org/indicator/HT_DCPHASE.htm).
1628
### HT_PHASOR - Hilbert Transform - Phasor Components
29+
> 函数名:HT_DCPHASE
30+
名称: 希尔伯特变换-希尔伯特变换相量分量
31+
1732
NOTE: The ``HT_PHASOR`` function has an unstable period.
1833
```python
1934
inphase, quadrature = HT_PHASOR(close)
2035
```
2136

2237
Learn more about the Hilbert Transform - Phasor Components at [tadoc.org](http://www.tadoc.org/indicator/HT_PHASOR.htm).
2338
### HT_SINE - Hilbert Transform - SineWave
39+
40+
> 函数名:HT_DCPHASE
41+
名称: 希尔伯特变换-正弦波
2442
NOTE: The ``HT_SINE`` function has an unstable period.
2543
```python
2644
sine, leadsine = HT_SINE(close)
2745
```
2846

2947
Learn more about the Hilbert Transform - SineWave at [tadoc.org](http://www.tadoc.org/indicator/HT_SINE.htm).
48+
3049
### 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+
3255
```python
3356
integer = HT_TRENDMODE(close)
3457
```
3558

3659
Learn more about the Hilbert Transform - Trend vs Cycle Mode at [tadoc.org](http://www.tadoc.org/indicator/HT_TRENDMODE.htm).
3760

38-
[Documentation Index](../doc_index.html)
39-
[FLOAT_RIGHTAll Function Groups](../funcs.html)
61+
[文档](../doc_index.md)
62+
[FLOAT_RIGHTAll Function Groups](../funcs.md)

func_groups/math_operators.md

+27-4
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,82 @@
1-
# Math Operator Functions
1+
# Math Operator Functions
2+
>数学运算符函数
23
### ADD - Vector Arithmetic Add
4+
> 函数名:ADD
5+
名称:向量加法运算
6+
37
```python
48
real = ADD(high, low)
59
```
610

711
### DIV - Vector Arithmetic Div
12+
> 函数名:DIV
13+
名称:向量除法运算
814
```python
915
real = DIV(high, low)
1016
```
1117

1218
### MAX - Highest value over a specified period
19+
> 函数名:MAX
20+
名称:周期内最大值(未满足周期返回nan)
1321
```python
1422
real = MAX(close, timeperiod=30)
1523
```
1624

1725
### MAXINDEX - Index of highest value over a specified period
26+
> 函数名:MAXINDEX
27+
名称:周期内最大值的索引
1828
```python
1929
integer = MAXINDEX(close, timeperiod=30)
2030
```
2131

2232
### MIN - Lowest value over a specified period
33+
> 函数名:MIN
34+
名称:周期内最小值 (未满足周期返回nan)
2335
```python
2436
real = MIN(close, timeperiod=30)
2537
```
2638

2739
### MININDEX - Index of lowest value over a specified period
40+
> 函数名:MININDEX
41+
名称:周期内最小值的索引
2842
```python
2943
integer = MININDEX(close, timeperiod=30)
3044
```
3145

3246
### MINMAX - Lowest and highest values over a specified period
47+
> 函数名:MINMAX
48+
名称:周期内最小值和最大值(返回元组````元组(array【最小】,array【最大】)```)
3349
```python
3450
min, max = MINMAX(close, timeperiod=30)
3551
```
3652

3753
### MINMAXINDEX - Indexes of lowest and highest values over a specified period
54+
> 函数名:MINMAX
55+
名称:周期内最小值和最大值索引(返回元组````元组(array【最小】,array【最大】)```)
3856
```python
3957
minidx, maxidx = MINMAXINDEX(close, timeperiod=30)
4058
```
4159

4260
### MULT - Vector Arithmetic Mult
61+
> 函数名:MULT
62+
名称:向量乘法运算
4363
```python
4464
real = MULT(high, low)
4565
```
4666

4767
### SUB - Vector Arithmetic Substraction
68+
> 函数名:SUB
69+
名称:向量减法运算
4870
```python
4971
real = SUB(high, low)
5072
```
51-
5273
### SUM - Summation
74+
> 函数名:SUM
75+
名称:周期内求和
5376
```python
5477
real = SUM(close, timeperiod=30)
5578
```
5679

5780

58-
[Documentation Index](../doc_index.html)
59-
[FLOAT_RIGHTAll Function Groups](../funcs.html)
81+
[文档](../doc_index.md)
82+
[FLOAT_RIGHTAll Function Groups](../funcs.md)

func_groups/math_transform.md

+43-2
Original file line numberDiff line numberDiff line change
@@ -1,79 +1,120 @@
11
# Math Transform Functions
22
### ACOS - Vector Trigonometric ACos
3+
> 函数名:ACOS
4+
名称:acos函数是反余弦函数,三角函数
5+
6+
37
```python
48
real = ACOS(close)
59
```
610

711
### ASIN - Vector Trigonometric ASin
12+
> 函数名:ASIN
13+
名称:反正弦函数,三角函数
14+
815
```python
916
real = ASIN(close)
1017
```
1118

1219
### ATAN - Vector Trigonometric ATan
20+
> 函数名:ASIN
21+
名称:数字的反正切值,三角函数
22+
1323
```python
1424
real = ATAN(close)
1525
```
1626

1727
### CEIL - Vector Ceil
28+
> 函数名:CEIL
29+
简介:向上取整数
30+
1831
```python
1932
real = CEIL(close)
2033
```
2134

2235
### COS - Vector Trigonometric Cos
36+
> 函数名:COS
37+
名称:余弦函数,三角函数
2338
```python
2439
real = COS(close)
2540
```
2641

2742
### COSH - Vector Trigonometric Cosh
43+
> 函数名:COSH
44+
名称:双曲正弦函数,三角函数
2845
```python
2946
real = COSH(close)
3047
```
3148

3249
### EXP - Vector Arithmetic Exp
50+
> 函数名:EXP
51+
名称:指数曲线,三角函数
52+
3353
```python
3454
real = EXP(close)
3555
```
3656

3757
### FLOOR - Vector Floor
58+
> 函数名:FLOOR
59+
名称:向下取整数
60+
3861
```python
3962
real = FLOOR(close)
4063
```
4164

4265
### LN - Vector Log Natural
66+
> 函数名:LN
67+
名称:自然对数
68+
4369
```python
4470
real = LN(close)
4571
```
4672

4773
### LOG10 - Vector Log10
74+
> 函数名:LOG10
75+
名称:对数函数log
76+
4877
```python
4978
real = LOG10(close)
5079
```
5180

5281
### SIN - Vector Trigonometric Sin
82+
> 函数名:SIN
83+
名称:正弦函数,三角函数
5384
```python
5485
real = SIN(close)
5586
```
5687

5788
### SINH - Vector Trigonometric Sinh
89+
> 函数名:SINH
90+
名称:双曲正弦函数,三角函数
91+
5892
```python
5993
real = SINH(close)
6094
```
6195

6296
### SQRT - Vector Square Root
97+
> 函数名:SQRT
98+
名称:非负实数的平方根
99+
63100
```python
64101
real = SQRT(close)
65102
```
66103

67104
### TAN - Vector Trigonometric Tan
105+
> 函数名:TAN
106+
名称:正切函数,三角函数
68107
```python
69108
real = TAN(close)
70109
```
71110

72111
### TANH - Vector Trigonometric Tanh
112+
> 函数名:TANH
113+
名称:双曲正切函数,三角函数
73114
```python
74115
real = TANH(close)
75116
```
76117

77118

78-
[Documentation Index](../doc_index.html)
79-
[FLOAT_RIGHTAll Function Groups](../funcs.html)
119+
[文档](../doc_index.md)
120+
[FLOAT_RIGHTAll Function Groups](../funcs.md)

func_groups/momentum_indicators.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -189,5 +189,5 @@ real = WILLR(high, low, close, timeperiod=14)
189189

190190
Learn more about the Williams' %R at [tadoc.org](http://www.tadoc.org/indicator/WILLR.htm).
191191

192-
[Documentation Index](../doc_index.html)
193-
[FLOAT_RIGHTAll Function Groups](../funcs.html)
192+
[Documentation Index](../doc_index.md)
193+
[FLOAT_RIGHTAll Function Groups](../funcs.md)

func_groups/overlap_studies.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,5 +104,5 @@ real = WMA(close, timeperiod=30)
104104

105105
Learn more about the Weighted Moving Average at [tadoc.org](http://www.tadoc.org/indicator/WMA.htm).
106106

107-
[Documentation Index](../doc_index.html)
108-
[FLOAT_RIGHTAll Function Groups](../funcs.html)
107+
[Documentation Index](../doc_index.md)
108+
[FLOAT_RIGHTAll Function Groups](../funcs.md)

0 commit comments

Comments
 (0)