Skip to content

Commit

Permalink
feat(data-modeling): Implement data modeling for graph patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
ldamasio committed May 13, 2024
1 parent 39d160b commit 16d725d
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions backends/monolith/api/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,18 @@ class Argument():
class Accumulation():
type = ('Bullish', 'Bearish')

class Breakout():
type = ('Bullish', 'Bearish')

class Uptrend():
type = ('Bullish', 'Bearish')

class Downtrend():
type = ('Bullish', 'Bearish')

class Sideways():
type = ('Bullish', 'Bearish')

# Chart Patterns

class Rectangle():
Expand Down Expand Up @@ -89,3 +101,20 @@ class MorningStart():
class EveningStart():
thre_candles = ('Closure', 'Opening', 'Closure')
type = ('Bullish')

# Statistical Indicators

class MovingAverage():
type = ('Bullish', 'Bearish')

class RelativeStrengthIndex():
type = ('Bullish', 'Bearish')

class MovingAverageConvergenceDivergence():
type = ('Bullish', 'Bearish')

class BollingerBands():
type = ('Bullish', 'Bearish')

class StochasticOscillator():
type = ('Bullish', 'Bearish')

0 comments on commit 16d725d

Please sign in to comment.