Skip to content

Commit 6bf80d6

Browse files
author
LavanyaA
authored
Merge pull request #893 from syncfusion-content/FLUT-879690-New-indicators-hyperlink-hotfix
FLUT-879690 - [Others] Added ROC and WMA indicators hyperlinks of public methods in the user guidelines in hotfix
2 parents a75f06a + 408c2e6 commit 6bf80d6

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Flutter/cartesian-charts/technical-indicators.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ The different types of technical indicators available in chart are follows:
2222
* [`Simple moving average indicator`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/SmaIndicator-class.html) - SMA
2323
* [`Stochastic indicator`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/StochasticIndicator-class.html)
2424
* [`Triangular moving average indicator`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TmaIndicator-class.html) - TMA
25-
* [`Rate Of Change indicator`]() - ROC
26-
* [`Weighted Moving Average indicator`]() - WMA
25+
* [`Rate Of Change indicator`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/RocIndicator-class.html) - ROC
26+
* [`Weighted Moving Average indicator`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/WmaIndicator-class.html) - WMA
2727

2828
## Adding Technical indicator into Chart
2929

@@ -495,13 +495,13 @@ Refer the following example,
495495

496496
### Rate of Change Indicator (ROC)
497497

498-
The ROC Indicator (Rate of Change) is a momentum oscillator used in technical analysis to measure the percentage change in price over a specified period of time.
498+
The [`Rate of Change`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/RocIndicator-class.html) Indicator is a momentum oscillator used in technical analysis to measure the percentage change in price over a specified period of time.
499499

500500
* Positive values indicate an upward momentum, suggesting price increases over the specified period.
501501

502502
* Negative values indicate a downward momentum, suggesting price decreases over the specified period.
503503

504-
This indicator also has a centerline. The [`centerLineColor`]() and [`centerLineWidth`]() properties are used to define center line.
504+
This indicator also has a centerline. The [`centerLineColor`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/RocIndicator/centerLineColor.html) and [`centerLineWidth`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/RocIndicator/centerLineWidth.html) properties are used to define center line.
505505

506506
Refer the following example,
507507

@@ -553,7 +553,7 @@ Refer the following example,
553553

554554
### Weighted moving average indicator (WMA)
555555

556-
The [`Weighted moving average indicator`]() is unlike a [`Simple moving average indicator`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/SmaIndicator-class.html), where each data point has an equal weight, the WMA assigns different weights to each data point.
556+
The [`Weighted moving average`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/WmaIndicator-class.html) indicator is unlike a [`Simple moving average`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/SmaIndicator-class.html) indicator, where each data point has an equal weight, the WMA assigns different weights to each data point.
557557

558558
This means that recent data points are given more weight in the calculation, making the WMA more responsive to recent price changes.
559559

@@ -787,8 +787,8 @@ Refer the following example below
787787

788788
* [`Triangular moving average indicator`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TmaIndicator-class.html) (TMA) - can be rendered with five value mappers ([`xValueMapper`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TechnicalIndicator/xValueMapper.html), [`lowValueMapper`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TechnicalIndicator/lowValueMapper.html), [`highValueMapper`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TechnicalIndicator/highValueMapper.html), [`openValueMapper`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TechnicalIndicator/openValueMapper.html), [`closeValueMapper`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TechnicalIndicator/closeValueMapper.html)).
789789

790-
* [`Rate Of Change indicator`]() (ROC) - can be rendered with five value mappers ([`xValueMapper`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TechnicalIndicator/xValueMapper.html), [`lowValueMapper`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TechnicalIndicator/lowValueMapper.html), [`highValueMapper`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TechnicalIndicator/highValueMapper.html), [`openValueMapper`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TechnicalIndicator/openValueMapper.html), [`closeValueMapper`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TechnicalIndicator/closeValueMapper.html)).
790+
* [`Rate Of Change indicator`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/RocIndicator-class.html) (ROC) - can be rendered with five value mappers ([`xValueMapper`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TechnicalIndicator/xValueMapper.html), [`lowValueMapper`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TechnicalIndicator/lowValueMapper.html), [`highValueMapper`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TechnicalIndicator/highValueMapper.html), [`openValueMapper`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TechnicalIndicator/openValueMapper.html), [`closeValueMapper`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TechnicalIndicator/closeValueMapper.html)).
791791

792-
* [`Weighted moving average indicator`]() (WMA) - can be rendered with five value mappers ([`xValueMapper`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TechnicalIndicator/xValueMapper.html), [`lowValueMapper`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TechnicalIndicator/lowValueMapper.html), [`highValueMapper`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TechnicalIndicator/highValueMapper.html), [`openValueMapper`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TechnicalIndicator/openValueMapper.html), [`closeValueMapper`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TechnicalIndicator/closeValueMapper.html)).
792+
* [`Weighted moving average indicator`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/WmaIndicator-class.html) (WMA) - can be rendered with five value mappers ([`xValueMapper`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TechnicalIndicator/xValueMapper.html), [`lowValueMapper`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TechnicalIndicator/lowValueMapper.html), [`highValueMapper`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TechnicalIndicator/highValueMapper.html), [`openValueMapper`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TechnicalIndicator/openValueMapper.html), [`closeValueMapper`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TechnicalIndicator/closeValueMapper.html)).
793793

794794
>**Note**: `chartData` in the above code snippets is a class type list and holds the data for binding to the chart series. Refer [Bind data source](https://help.syncfusion.com/flutter/cartesian-charts/getting-started#bind-data-source) topic for more details.

0 commit comments

Comments
 (0)