From 39d160b155053e5cc1ee0f05086432f9f8243763 Mon Sep 17 00:00:00 2001 From: Leandro Damasio Date: Mon, 13 May 2024 00:55:40 -0300 Subject: [PATCH] feat(data-modeling): Implement data modeling for graph patterns --- backends/monolith/api/models.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backends/monolith/api/models.py b/backends/monolith/api/models.py index 7cc25a4..b07ed2c 100644 --- a/backends/monolith/api/models.py +++ b/backends/monolith/api/models.py @@ -42,6 +42,8 @@ class Operation(models.Model): stop_gain_percent = models.IntegerField(blank=True) stop_loss_percent = models.IntegerField(blank=True) +# Technica Analysis + class TechnicalEvent(): type = ('Bullish', 'Bearish')