netflypsb commited on
Commit
503cf40
Β·
verified Β·
1 Parent(s): d219cf7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +24 -1
app.py CHANGED
@@ -5,13 +5,36 @@ import matplotlib.pyplot as plt
5
  import yfinance as yf
6
 
7
  st.set_page_config(
8
- page_title="US Stock Forecast",
9
  page_icon="logo.png",
10
  menu_items=None
11
  )
12
 
13
  st.write("# US Stocks Forecast")
14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  # Importing forecasting algorithms from the algo directory
16
  from algo.sarima import sarima_forecast
17
  from algo.linear_regression import linear_regression_forecast
 
5
  import yfinance as yf
6
 
7
  st.set_page_config(
8
+ page_title="netflypsb",
9
  page_icon="logo.png",
10
  menu_items=None
11
  )
12
 
13
  st.write("# US Stocks Forecast")
14
 
15
+ st.markdown(
16
+ """
17
+ ## πŸš€πŸ“ Forecast Future Stock Price
18
+
19
+
20
+ 🌟 This app predicts 2 things: future price trajectory and future price
21
+ ## How to use it? πŸŽ‰
22
+ - **1. Choose a ticker**: Write the ticker symbol for the stock you want to trade/invest. Currently only supports US stocks. πŸ“
23
+ - **2. Choose analysis length**: Pick the start date and the end date for the data you want to use in the prediction. More is not necessarily better! πŸ₯
24
+ - **3. Choose horizon**: How far into the future do you want the app to predict. Shorter is mathematically better!
25
+ - **4. Choose prediction day**: Choose ONE (1) day within the horizon that you picked in step 3. to see the predicted price for that day. πŸ”
26
+ - **5. Press Analyze** πŸš€πŸŽ‰
27
+
28
+
29
+ ## Let's Connect! 🌐
30
+ - If you liked this app, see my other projects at:
31
+ - [β˜• My Buy Me a Coffee Page](https://www.buymeacoffee.com/magister)
32
+ - [πŸ€— My Huggingface Page](https://huggingface.co/netflypsb)
33
+ - [🐦 My X Account](https://twitter.com/VeloVates)
34
+
35
+ """
36
+ )
37
+
38
  # Importing forecasting algorithms from the algo directory
39
  from algo.sarima import sarima_forecast
40
  from algo.linear_regression import linear_regression_forecast