prasanth.thangavel commited on
Commit
c2b76ba
·
1 Parent(s): f2ba8bf

Add sanity check for yfinance at the start

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -12,6 +12,10 @@ from utils.fd_utils import calculate_fd_returns
12
 
13
  print("Starting the app")
14
 
 
 
 
 
15
  # Set page config
16
  st.set_page_config(page_title="Asset Class Comparison", layout="wide")
17
 
 
12
 
13
  print("Starting the app")
14
 
15
+ # Sanity check on the yfinance_utils
16
+ print("Sanity check on the yfinance_utils")
17
+ print(fetch_yfinance_daily("MSFT", "2020-01-01", "2020-01-03"))
18
+
19
  # Set page config
20
  st.set_page_config(page_title="Asset Class Comparison", layout="wide")
21