From b29bb2ee5f6742aead76ffde564be537443ae4b0 Mon Sep 17 00:00:00 2001 From: Benny Neugebauer Date: Wed, 1 Sep 2021 19:20:54 +0200 Subject: [PATCH] fix indicator name --- src/rma.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rma.ts b/src/rma.ts index 3441cc7..b6bfef0 100644 --- a/src/rma.ts +++ b/src/rma.ts @@ -1,8 +1,8 @@ import { SMA } from './sma'; /** - * The RMA (Relative Moving Average) is a powerful indicator based on the Simple Moving Average indicator. - * The Simple Moving Average (SMA) indicator is useful to identify the start and rreversal of a trend. + * The RMA (Wilder's Smoothed Moving Average) is a powerful indicator based on the Simple Moving Average indicator. + * The Simple Moving Average (SMA) indicator is useful to identify the start and reversal of a trend. */ export class RMA { private smooth: number;