Update app.py
Browse files
app.py
CHANGED
@@ -77,7 +77,7 @@ if __name__ == "__main__":
|
|
77 |
|
78 |
|
79 |
def fetch_alpha_vantage_data(api_key, symbol):
|
80 |
-
url = f'https://www.alphavantage.co/query?function=TIME_SERIES_INTRADAY&symbol={
|
81 |
response = requests.get(url)
|
82 |
alpha_vantage_data = response.json()
|
83 |
return alpha_vantage_data
|
|
|
77 |
|
78 |
|
79 |
def fetch_alpha_vantage_data(api_key, symbol):
|
80 |
+
url = f'https://www.alphavantage.co/query?function=TIME_SERIES_INTRADAY&symbol={symbol2}&interval=5min&apikey={api_key}'
|
81 |
response = requests.get(url)
|
82 |
alpha_vantage_data = response.json()
|
83 |
return alpha_vantage_data
|