@@ -27,7 +27,7 @@ export class IndicatorDirective extends ComplexBase<IndicatorDirective> {
27
27
28
28
29
29
/**
30
- * Defines the type of the technical indicator
30
+ * Defines the type of the technical indicator.
31
31
* @default 'Sma'
32
32
*/
33
33
public type : any ;
@@ -52,7 +52,7 @@ export class IndicatorDirective extends ComplexBase<IndicatorDirective> {
52
52
*/
53
53
public colorName : any ;
54
54
/**
55
- * Defines the period, the price changes over which will define the %D value in stochastic indicators
55
+ * Defines the period, the price changes over which will define the %D value in stochastic indicators.
56
56
* @default 3
57
57
*/
58
58
public dPeriod : any ;
@@ -73,12 +73,12 @@ export class IndicatorDirective extends ComplexBase<IndicatorDirective> {
73
73
*/
74
74
public enableComplexProperty : any ;
75
75
/**
76
- * Sets the fast period to define the Macd line
76
+ * Sets the fast period to define the Macd line.
77
77
* @default 26
78
78
*/
79
79
public fastPeriod : any ;
80
80
/**
81
- * Defines the field to compare the current value with previous values
81
+ * Defines the field to compare the current value with previous values.
82
82
* @default 'Close'
83
83
*/
84
84
public field : any ;
@@ -96,7 +96,7 @@ export class IndicatorDirective extends ComplexBase<IndicatorDirective> {
96
96
*/
97
97
public high : any ;
98
98
/**
99
- * Defines the look back period, the price changes over which will define the %K value in stochastic indicators
99
+ * Defines the look back period, the price changes over which will define the %K value in stochastic indicators.
100
100
* @default 14
101
101
*/
102
102
public kPeriod : any ;
@@ -107,21 +107,21 @@ export class IndicatorDirective extends ComplexBase<IndicatorDirective> {
107
107
*/
108
108
public low : any ;
109
109
/**
110
- * Defines the appearance of lower line in technical indicators
110
+ * Defines the appearance of lower line in technical indicators.
111
111
*/
112
112
public lowerLine : any ;
113
113
/**
114
- * Defines the appearance of the the MacdLine of Macd indicator
114
+ * Defines the appearance of the the MacdLine of Macd indicator.
115
115
* @default { color: '#ff9933', width: 2 }
116
116
*/
117
117
public macdLine : any ;
118
118
/**
119
- * Defines the color of the negative bars in Macd indicators
119
+ * Defines the color of the negative bars in Macd indicators.
120
120
* @default '#e74c3d'
121
121
*/
122
122
public macdNegativeColor : any ;
123
123
/**
124
- * Defines the color of the positive bars in Macd indicators
124
+ * Defines the color of the positive bars in Macd indicators.
125
125
* @default '#2ecd71'
126
126
*/
127
127
public macdPositiveColor : any ;
@@ -137,22 +137,22 @@ export class IndicatorDirective extends ComplexBase<IndicatorDirective> {
137
137
*/
138
138
public open : any ;
139
139
/**
140
- * Defines the over-bought(threshold) values. It is applicable for RSI and stochastic indicators
140
+ * Defines the over-bought(threshold) values. It is applicable for RSI and stochastic indicators.
141
141
* @default 80
142
142
*/
143
143
public overBought : any ;
144
144
/**
145
- * Defines the over-sold(threshold) values. It is applicable for RSI and stochastic indicators
145
+ * Defines the over-sold(threshold) values. It is applicable for RSI and stochastic indicators.
146
146
* @default 20
147
147
*/
148
148
public overSold : any ;
149
149
/**
150
- * Defines the period, the price changes over which will be considered to predict the trend
150
+ * Defines the period, the price changes over which will be considered to predict the trend.
151
151
* @default 14
152
152
*/
153
153
public period : any ;
154
154
/**
155
- * Defines the appearance of period line in technical indicators
155
+ * Defines the appearance of period line in technical indicators.
156
156
*/
157
157
public periodLine : any ;
158
158
/**
@@ -175,27 +175,27 @@ export class IndicatorDirective extends ComplexBase<IndicatorDirective> {
175
175
*/
176
176
public segments : any ;
177
177
/**
178
- * Defines the name of the series, the data of which has to be depicted as indicator
178
+ * Defines the name of the series, the data of which has to be depicted as indicator.
179
179
* @default ''
180
180
*/
181
181
public seriesName : any ;
182
182
/**
183
- * Enables/Disables the over-bought and over-sold regions
183
+ * Enables/Disables the over-bought and over-sold regions.
184
184
* @default true
185
185
*/
186
186
public showZones : any ;
187
187
/**
188
- * Sets the slow period to define the Macd line
188
+ * Sets the slow period to define the Macd line.
189
189
* @default 12
190
190
*/
191
191
public slowPeriod : any ;
192
192
/**
193
- * Sets the standard deviation values that helps to define the upper and lower bollinger bands
193
+ * Sets the standard deviation values that helps to define the upper and lower bollinger bands.
194
194
* @default 2
195
195
*/
196
196
public standardDeviation : any ;
197
197
/**
198
- * Defines the appearance of the upper line in technical indicators
198
+ * Defines the appearance of the upper line in technical indicators.
199
199
*/
200
200
public upperLine : any ;
201
201
/**
0 commit comments