From afdf0d06033e74b73466b4ae72668aebce4dd2e3 Mon Sep 17 00:00:00 2001 From: moshferatu Date: Sun, 17 Nov 2024 00:50:48 -0800 Subject: [PATCH] Add Internal Bar Strength Band strategy signals to swing trading dashboard --- dashboard.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dashboard.py b/dashboard.py index d633cbc..050fe91 100644 --- a/dashboard.py +++ b/dashboard.py @@ -18,6 +18,7 @@ from strategies import double_5s from strategies import down_days_in_a_row from strategies import end_of_month from strategies import internal_bar_strength +from strategies import internal_bar_strength_band from strategies import lower_lows from strategies import short_term_lows from strategies import tps @@ -52,6 +53,7 @@ signal_functions: List[Dict[str, SignalFunction]] = [ {'strategy': 'Down Days in a Row', 'function': down_days_in_a_row.signals}, {'strategy': 'End of Month', 'function': end_of_month.signals}, {'strategy': 'Internal Bar Strength', 'function': internal_bar_strength.signals}, + {'strategy': 'Internal Bar Strength Band', 'function': internal_bar_strength_band.signals}, {'strategy': 'Lower Lows', 'function': lower_lows.signals}, {'strategy': 'Short-Term Lows', 'function': short_term_lows.signals}, {'strategy': 'TPS', 'function': tps.signals},