Add down days in a row signals to swing trading dashboard
This commit is contained in:
parent
89029dd7a5
commit
99a7165ffb
@ -12,6 +12,7 @@ from plotting import CandlestickChart, figure_with_subplots
|
||||
|
||||
from strategies import cumulative_rsi
|
||||
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 lower_lows
|
||||
@ -31,6 +32,7 @@ signal_functions: List[Dict[str, SignalFunction]] = [
|
||||
{'strategy': '2-Period RSI', 'function': two_period_rsi.signals},
|
||||
{'strategy': 'Cumulative RSI', 'function': cumulative_rsi.signals},
|
||||
{'strategy': 'Double 5\'s', 'function': double_5s.signals},
|
||||
{'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': 'Lower Lows', 'function': lower_lows.signals},
|
||||
|
Loading…
Reference in New Issue
Block a user