Skip to content

Commit e2d5e6a

Browse files
authored
Update README.md
1 parent 11765bb commit e2d5e6a

File tree

1 file changed

+61
-4
lines changed

1 file changed

+61
-4
lines changed

README.md

Lines changed: 61 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ Simplest usage:
2929

3030
```dart
3131
final candle1 = Candle(
32-
epoch: DateTime.now().millisecondsSinceEpoch - 1000,
32+
epoch: DateTime(...),
3333
high: 400,
3434
low: 50,
3535
open: 200,
3636
close: 100,
3737
);
3838
final candle2 = Candle(
39-
epoch: DateTime.now().millisecondsSinceEpoch,
39+
epoch: DateTime(...),
4040
high: 500,
4141
low: 100,
4242
open: 100,
@@ -49,7 +49,7 @@ final candles = [candle1, candle2, ...]
4949
5050
Chart(
5151
mainSeries: CandleSeries(candles),
52-
pipSize: 4, // digits after decimal point
52+
pipSize: 4, // Number of decimal places when showing values on y-axis
5353
granularity: granularity, // duration of 1 candle in ms (for ticks: average ms difference between ticks)
5454
);
5555
```
@@ -140,7 +140,7 @@ Chart(
140140

141141
<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">
142142

143-
### Indicators
143+
### Technical Indicators
144144

145145
Here's a comprehensive example showing how to use multiple indicators with different configurations:
146146

@@ -195,6 +195,63 @@ Chart(
195195
```
196196
<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">
197197

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+
198255
### Drawing Tools
199256

200257
This section will be updated with comprehensive documentation about how to add and configure drawing tools.

0 commit comments

Comments
 (0)