Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -39,7 +39,7 @@ def yf_download_tool(ticker: str, start_date: date, end_date: date) -> pd.DataFr
|
|
39 |
Use this function for any questions related to getting historical stock data.
|
40 |
The input should be a ticker string, a start date, and an end date.
|
41 |
This function always returns a pandas DataFrame."""
|
42 |
-
return yf.download(
|
43 |
|
44 |
tools = {
|
45 |
"today_tool": today_tool,
|
|
|
39 |
Use this function for any questions related to getting historical stock data.
|
40 |
The input should be a ticker string, a start date, and an end date.
|
41 |
This function always returns a pandas DataFrame."""
|
42 |
+
return yf.download(ticker, start=start_date, end=end_date)
|
43 |
|
44 |
tools = {
|
45 |
"today_tool": today_tool,
|