Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -4,6 +4,14 @@ import numpy as np
|
|
4 |
import matplotlib.pyplot as plt
|
5 |
import yfinance as yf
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
# Importing forecasting algorithms from the algo directory
|
8 |
from algo.sarima import sarima_forecast
|
9 |
from algo.linear_regression import linear_regression_forecast
|
|
|
4 |
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
|