Add HILO Index Lows strategy signals to swing trading dashboard

This commit is contained in:
moshferatu 2024-11-19 06:10:48 -08:00
parent 725b31fd5b
commit a3409d0b14

View File

@ -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 high_volume_days
from strategies import hilo_index_lows
from strategies import internal_bar_strength
from strategies import internal_bar_strength_band
from strategies import large_moves_down
@ -56,6 +57,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': 'High Volume Days', 'function': high_volume_days.signals},
{'strategy': 'HILO Index Lows', 'function': hilo_index_lows.signals},
{'strategy': 'Internal Bar Strength', 'function': internal_bar_strength.signals},
{'strategy': 'Internal Bar Strength Band', 'function': internal_bar_strength_band.signals},
{'strategy': 'Large Moves Down', 'function': large_moves_down.signals},