tonne commited on
Commit
640a635
1 Parent(s): 13fd304

Add title and custom symbol

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -31,5 +31,7 @@ def prophet_ts(symbol):
31
  name = f"{symbol}_pred"
32
  ))
33
  return fig
34
- fig = prophet_ts(symbol='FPT')
 
 
35
  st.plotly_chart(fig, use_container_width=True)
 
31
  name = f"{symbol}_pred"
32
  ))
33
  return fig
34
+ st.title("Trading in Vietnam")
35
+ sb = st.text_input('Symbol', 'FPT')
36
+ fig = prophet_ts(symbol=sb)
37
  st.plotly_chart(fig, use_container_width=True)