QuantumLearner commited on
Commit
7debc9f
·
verified ·
1 Parent(s): 6db809f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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 Historical Sentiment Analysis"):
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 Sentiment Change Analysis"):
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