diff --git a/stockpredictor/analysis/Common.py b/stockpredictor/analysis/Common.py index 76bbbb5..d7d2bef 100644 --- a/stockpredictor/analysis/Common.py +++ b/stockpredictor/analysis/Common.py @@ -533,7 +533,7 @@ class Common: if top - bottom > 0: energy = (price - bottom) / (top - bottom) - if energy < 0.5: + if 0.1 < energy < 0.5: return "e(" + str(round(energy, 2)) + ")_" return ""