diff --git a/src/streamlit_app.py b/src/streamlit_app.py index e26b7c4..bb08cc4 100644 --- a/src/streamlit_app.py +++ b/src/streamlit_app.py @@ -401,7 +401,7 @@ def get_extra_inputs(tickerOption, executeOption, c_index=None, c_criteria=None, ac, bc, cc, dc = st.columns([1,1,1,1]) shuffle = ac.checkbox('Shuffle stocks while screening', value=configManager.shuffleEnabled, disabled=True) cache = bc.checkbox('Enable caching of stock data after market hours', value=configManager.cacheEnabled, disabled=True) - stagetwo = cc.checkbox('Screen only for Stage-2 stocks', value=configManager.stageTwo) + stagetwo = cc.checkbox('Screen only for [Stage-2](https://www.investopedia.com/articles/investing/070715/trading-stage-analysis.asp#:~:text=placed%20stops.-,Stage%202%3A%20Uptrends,-Image%20by%20Sabrina) stocks', value=configManager.stageTwo) useema = dc.checkbox('Use EMA instead of SMA', value=configManager.useEMA) save_button = st.button('Save Configuration', on_click=on_config_change, type='primary', use_container_width=True)