diff --git a/docs/_indicators/Dema.md b/docs/_indicators/Dema.md index 751d54ae4..735371a9f 100644 --- a/docs/_indicators/Dema.md +++ b/docs/_indicators/Dema.md @@ -10,11 +10,11 @@ redirect_from: # {{ page.title }} Created by Patrick G. Mulloy, the [Double exponential moving average](https://en.wikipedia.org/wiki/Double_exponential_moving_average) is a faster smoothed EMA of the Close price over a lookback window. -[[Discuss] :speech_balloon:]({{site.github.repository_url}}/discussions/256 "Community discussion about this indicator") +[[Discuss] :speech_balloon:]({{site.github.repository_url}}/discussions/807 "Community discussion about this indicator") ![image]({{site.baseurl}}/assets/charts/Dema.png) -DEMA is shown as the dashed line above. [EMA](../Ema#content) (solid line) and [Triple EMA](../Tema#content) (dotted line) are also shown here for comparison. +See also related [EMA](../Ema#content) and [Triple EMA](../Tema#content). ```csharp // usage diff --git a/docs/_indicators/Ema.md b/docs/_indicators/Ema.md index a95abae08..34abb8eaa 100644 --- a/docs/_indicators/Ema.md +++ b/docs/_indicators/Ema.md @@ -12,7 +12,7 @@ layout: indicator ![image]({{site.baseurl}}/assets/charts/Ema.png) -See also related [Double EMA](../Dema#content) (dashed line) and [Triple EMA](../Tema#content). +See also related [Double EMA](../Dema#content) and [Triple EMA](../Tema#content). ```csharp // usage (with Close price) diff --git a/docs/_indicators/Tema.md b/docs/_indicators/Tema.md index d2ab9ea4c..b899a6889 100644 --- a/docs/_indicators/Tema.md +++ b/docs/_indicators/Tema.md @@ -11,11 +11,11 @@ redirect_from: Created by Patrick G. Mulloy, the [Triple exponential moving average](https://en.wikipedia.org/wiki/Triple_exponential_moving_average) is a faster multi-smoothed EMA of the Close price over a lookback window. Note: TEMA is often confused with the alternative [TRIX](../Trix#content) oscillator. -[[Discuss] :speech_balloon:]({{site.github.repository_url}}/discussions/256 "Community discussion about this indicator") +[[Discuss] :speech_balloon:]({{site.github.repository_url}}/discussions/808 "Community discussion about this indicator") ![image]({{site.baseurl}}/assets/charts/Tema.png) -TEMA is shown as the dotted line above. [EMA](../Ema#content) (solid line) and [Double EMA](../Dema#content) (dashed line) are also shown here for comparison. +See also related [EMA](../Ema#content) and [Double EMA](../Dema#content). ```csharp // usage