From 91968a08ae2c3f1f3f5eca67b0061ed55e65ca61 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 12 Dec 2023 20:08:39 +0100 Subject: [PATCH] Add compatibility alias for Zema --- technical/indicators/overlap_studies.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/technical/indicators/overlap_studies.py b/technical/indicators/overlap_studies.py index a33a0cc6..70d4e8ec 100644 --- a/technical/indicators/overlap_studies.py +++ b/technical/indicators/overlap_studies.py @@ -40,6 +40,11 @@ def dema(dataframe, period, field="close"): return ta.DEMA(dataframe, timeperiod=period, price=field) +# Compatibility alias for Zema +# https://github.com/freqtrade/technical/pull/356 for details. +zema = dema + + # EMA Exponential Moving Average def ema(dataframe: DataFrame, period: int, field="close") -> Series: """