Add Lower Lows signals to swing trading dashboard
This commit is contained in:
parent
8de56aae8e
commit
e8eceb2c59
@ -14,6 +14,7 @@ from strategies import cumulative_rsi
|
||||
from strategies import double_5s
|
||||
from strategies import end_of_month
|
||||
from strategies import internal_bar_strength
|
||||
from strategies import lower_lows
|
||||
from strategies import trin
|
||||
from strategies import two_period_rsi
|
||||
from strategies import vix_rsi
|
||||
@ -32,6 +33,7 @@ signal_functions: List[Dict[str, SignalFunction]] = [
|
||||
{'strategy': 'Double 5\'s', 'function': double_5s.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},
|
||||
{'strategy': 'TRIN', 'function': trin.signals},
|
||||
{'strategy': 'VIX RSI', 'function': vix_rsi.signals}
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user