@@ -29,14 +29,14 @@ Simplest usage:
29
29
30
30
``` dart
31
31
final candle1 = Candle(
32
- epoch: DateTime.now().millisecondsSinceEpoch - 1000 ,
32
+ epoch: DateTime(...) ,
33
33
high: 400,
34
34
low: 50,
35
35
open: 200,
36
36
close: 100,
37
37
);
38
38
final candle2 = Candle(
39
- epoch: DateTime.now().millisecondsSinceEpoch ,
39
+ epoch: DateTime(...) ,
40
40
high: 500,
41
41
low: 100,
42
42
open: 100,
@@ -49,7 +49,7 @@ final candles = [candle1, candle2, ...]
49
49
50
50
Chart(
51
51
mainSeries: CandleSeries(candles),
52
- pipSize: 4, // digits after decimal point
52
+ pipSize: 4, // Number of decimal places when showing values on y-axis
53
53
granularity: granularity, // duration of 1 candle in ms (for ticks: average ms difference between ticks)
54
54
);
55
55
```
@@ -140,7 +140,7 @@ Chart(
140
140
141
141
<img src =" https://github.com/deriv-com/flutter-chart/blob/ramin/prepare_for_publish/doc/images/sample_tick_indicator.png " alt =" sample_tick_indicator " width =" 200 " height =" 300 " >
142
142
143
- ### Indicators
143
+ ### Technical Indicators
144
144
145
145
Here's a comprehensive example showing how to use multiple indicators with different configurations:
146
146
@@ -195,6 +195,63 @@ Chart(
195
195
```
196
196
<img src =" https://github.com/deriv-com/flutter-chart/blob/ramin/prepare_for_publish/doc/images/bb_and_smi_indicators.png " alt =" bb_and_smi_indicators " width =" 200 " height =" 300 " >
197
197
198
+ ## Available Indicators
199
+
200
+ The package includes the following technical indicators:
201
+
202
+ ### Moving Averages
203
+
204
+ - Simple Moving Average (SMA)
205
+ - Exponential Moving Average (EMA)
206
+ - Double Exponential Moving Average (DEMA)
207
+ - Triple Exponential Moving Average (TEMA)
208
+ - Triangular Moving Average (TRIMA)
209
+ - Weighted Moving Average (WMA)
210
+ - Modified Moving Average (MMA)
211
+ - Least Squares Moving Average (LSMA)
212
+ - Hull Moving Average (HMA)
213
+ - Variable Moving Average (VMA)
214
+ - Welles Wilder Smoothing Moving Average (WWSMA)
215
+ - Zero-Lag Exponential Moving Average (ZELMA)
216
+
217
+ ### Oscillators
218
+
219
+ - Relative Strength Index (RSI)
220
+ - Stochastic Momentum Index (SMI)
221
+ - Moving Average Convergence Divergence (MACD)
222
+ - Awesome Oscillator
223
+ - Williams %R
224
+ - Rate of Change (ROC)
225
+ - Chande Momentum Oscillator (CMO)
226
+ - Gator Oscillator
227
+
228
+ ### Trend Indicators
229
+
230
+ - Average Directional Index (ADX)
231
+ - Parabolic SAR
232
+ - Ichimoku Cloud
233
+
234
+ ### Volatility Indicators
235
+
236
+ - Bollinger Bands
237
+ - Average True Range (ATR)
238
+ - Standard Deviation
239
+ - Variance
240
+
241
+ ### Channel Indicators
242
+
243
+ - Donchian Channel
244
+ - Moving Average Envelope
245
+
246
+ ### Other Indicators
247
+
248
+ - Aroon
249
+ - Commodity Channel Index (CCI)
250
+ - Detrended Price Oscillator (DPO)
251
+ - ZigZag
252
+ - Fixed Channel Bands (FCB)
253
+ - Bullish/Bearish Pattern Recognition
254
+
198
255
### Drawing Tools
199
256
200
257
This section will be updated with comprehensive documentation about how to add and configure drawing tools.
0 commit comments