Skip to content

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
  • Loading branch information
m5l14i11 committed Apr 5, 2024
1 parent 8164d60 commit b0846a2
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions core/models/moving_average.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,33 +2,33 @@


class MovingAverageType(Enum):
# ALMA = 1
ALMA = 1
CAMA = 2
# DEMA = 3
# EMA = 4
# FRAMA = 5
# GMA = 6
# HMA = 7
# HEMA = 8
# KAMA = 9
# KJS = 10
# LSMA = 11
# MD = 12
# RMSMA = 13
# SINWMA = 14
# SMA = 15
# SMMA = 16
# T3 = 17
# TEMA = 18
# TMA = 19
# VIDYA = 20
# VWMA = 21
# VWEMA = 22
# WMA = 23
# ZLEMA = 24
# ZLSMA = 25
# ZLTEMA = 26
# ZLHMA = 27
DEMA = 3
EMA = 4
FRAMA = 5
GMA = 6
HMA = 7
HEMA = 8
KAMA = 9
KJS = 10
LSMA = 11
MD = 12
RMSMA = 13
SINWMA = 14
SMA = 15
SMMA = 16
T3 = 17
TEMA = 18
TMA = 19
VIDYA = 20
VWMA = 21
VWEMA = 22
WMA = 23
ZLEMA = 24
ZLSMA = 25
ZLTEMA = 26
ZLHMA = 27

def __str__(self):
return self.name.upper()

0 comments on commit b0846a2

Please sign in to comment.