Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -406,7 +406,7 @@ def main():
|
|
| 406 |
value=st.session_state.historical_ticker,
|
| 407 |
help="Enter a ticker symbol for historical data."
|
| 408 |
)
|
| 409 |
-
if st.button("Run
|
| 410 |
st.session_state.historical_run = True
|
| 411 |
st.session_state.historical_ticker = ticker
|
| 412 |
|
|
@@ -430,7 +430,7 @@ def main():
|
|
| 430 |
value=st.session_state.change_top_n,
|
| 431 |
help="Number of top stocks to show based on rank."
|
| 432 |
)
|
| 433 |
-
if st.button("Run
|
| 434 |
st.session_state.change_run = True
|
| 435 |
st.session_state.change_top_n = top_n
|
| 436 |
|
|
|
|
| 406 |
value=st.session_state.historical_ticker,
|
| 407 |
help="Enter a ticker symbol for historical data."
|
| 408 |
)
|
| 409 |
+
if st.button("Run Analysis"):
|
| 410 |
st.session_state.historical_run = True
|
| 411 |
st.session_state.historical_ticker = ticker
|
| 412 |
|
|
|
|
| 430 |
value=st.session_state.change_top_n,
|
| 431 |
help="Number of top stocks to show based on rank."
|
| 432 |
)
|
| 433 |
+
if st.button("Run Analysis"):
|
| 434 |
st.session_state.change_run = True
|
| 435 |
st.session_state.change_top_n = top_n
|
| 436 |
|