Spaces:
Build error
Build error
David Li commited on
Commit ·
b18d21e
1
Parent(s): 87d5fd6
fix: try again
Browse files- pages/economy.py +3 -0
- pages/ta.py +1 -1
pages/economy.py
CHANGED
|
@@ -28,6 +28,9 @@ def openbb_economy():
|
|
| 28 |
|
| 29 |
economy_dfs, file_names = openbb_economy()
|
| 30 |
|
|
|
|
|
|
|
|
|
|
| 31 |
# output all economy tables with labels above
|
| 32 |
for i in range(len(economy_dfs)):
|
| 33 |
st.write(f"# {file_names[i]}")
|
|
|
|
| 28 |
|
| 29 |
economy_dfs, file_names = openbb_economy()
|
| 30 |
|
| 31 |
+
if st.button("Refresh Data"):
|
| 32 |
+
economy_dfs, file_names = openbb_economy()
|
| 33 |
+
|
| 34 |
# output all economy tables with labels above
|
| 35 |
for i in range(len(economy_dfs)):
|
| 36 |
st.write(f"# {file_names[i]}")
|
pages/ta.py
CHANGED
|
@@ -2,7 +2,7 @@ import streamlit as st
|
|
| 2 |
import datetime
|
| 3 |
import pandas as pd
|
| 4 |
import requests
|
| 5 |
-
from utils.util import remove_existing_file
|
| 6 |
from openbb_terminal.stocks.stocks_helper import load
|
| 7 |
from openbb_terminal.common.technical_analysis.volatility_view import display_bbands, display_donchian
|
| 8 |
|
|
|
|
| 2 |
import datetime
|
| 3 |
import pandas as pd
|
| 4 |
import requests
|
| 5 |
+
from pages.utils.util import remove_existing_file
|
| 6 |
from openbb_terminal.stocks.stocks_helper import load
|
| 7 |
from openbb_terminal.common.technical_analysis.volatility_view import display_bbands, display_donchian
|
| 8 |
|