Skip to main content
Module

x/trading_signals/mod.ts>WSMA

Technical indicators to run technical analysis for Deno. 📈
Latest
class WSMA
extends MovingAverage
Re-export
import { WSMA } from "https://deno.land/x/trading_signals@3.6.1/mod.ts";

Wilder's Smoothed Moving Average (WSMA) Type: Trend

Developed by John Welles Wilder, Jr. to help identifying and spotting bullish and bearish trends. Similar to Exponential Moving Averages with the difference that a smoothing factor of 1/interval is being used, which makes it respond more slowly to price changes.

Synonyms:

  • Modified Exponential Moving Average (MEMA)
  • Smoothed Moving Average (SMMA)
  • Welles Wilder's Smoothing (WWS)
  • Wilder's Moving Average (WMA)
  • RMA on TraidingView

Constructors

new
WSMA(interval: number)

Properties

private
readonly
indicator: SMA
private
readonly
smoothingFactor: BigInstance