Skip to main content
Module

x/trading_signals/mod.ts>DEMA

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

Double Exponential Moving Average (DEMA) Type: Trend

The Double Exponential Moving Average (DEMA) was developed by Patrick G. Mulloy. It attempts to remove the lag associated with Moving Averages by placing more weight on recent values. It has its name because the value of an EMA is doubled which makes it responds more quickly to short-term price changes than a normal EMA.

Constructors

new
DEMA(interval: number)

Properties

private
readonly
inner: EMA
private
readonly
outer: EMA
readonly
isStable: boolean