Add VIX RSI signals to swing trading dashboard
This commit is contained in:
parent
9efbac3b8a
commit
5866bcd9ab
@ -15,6 +15,7 @@ from strategies import double_5s
|
|||||||
from strategies import end_of_month
|
from strategies import end_of_month
|
||||||
from strategies import internal_bar_strength
|
from strategies import internal_bar_strength
|
||||||
from strategies import two_period_rsi
|
from strategies import two_period_rsi
|
||||||
|
from strategies import vix_rsi
|
||||||
from stylesheets import grid_stylesheet, theme_stylesheet
|
from stylesheets import grid_stylesheet, theme_stylesheet
|
||||||
|
|
||||||
app = Dash(__name__, external_stylesheets = [theme_stylesheet, grid_stylesheet])
|
app = Dash(__name__, external_stylesheets = [theme_stylesheet, grid_stylesheet])
|
||||||
@ -29,7 +30,8 @@ signal_functions: List[Dict[str, SignalFunction]] = [
|
|||||||
{'strategy': 'Cumulative RSI', 'function': cumulative_rsi.signals},
|
{'strategy': 'Cumulative RSI', 'function': cumulative_rsi.signals},
|
||||||
{'strategy': 'Double 5\'s', 'function': double_5s.signals},
|
{'strategy': 'Double 5\'s', 'function': double_5s.signals},
|
||||||
{'strategy': 'End of Month', 'function': end_of_month.signals},
|
{'strategy': 'End of Month', 'function': end_of_month.signals},
|
||||||
{'strategy': 'Internal Bar Strength', 'function': internal_bar_strength.signals}
|
{'strategy': 'Internal Bar Strength', 'function': internal_bar_strength.signals},
|
||||||
|
{'strategy': 'VIX RSI', 'function': vix_rsi.signals}
|
||||||
]
|
]
|
||||||
|
|
||||||
symbol = 'SPY'
|
symbol = 'SPY'
|
||||||
|
Loading…
Reference in New Issue
Block a user