cpatino10 commited on
Commit
54355fd
·
verified ·
1 Parent(s): f0c331c

added end_date docstring

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -17,6 +17,7 @@ def fetch_historical_price_data(symbol:str, start_date:str, end_date:str)-> pd.D
17
  Args:
18
  symbol: stock market symbol such as 'AAPL', 'MSFT', 'NVDA'
19
  start_date: start date in YYYY-MM-DD format. Example - '2025-05-10'
 
20
  """
21
  FMP_KEY = os.getenv('FMP_KEY')
22
 
 
17
  Args:
18
  symbol: stock market symbol such as 'AAPL', 'MSFT', 'NVDA'
19
  start_date: start date in YYYY-MM-DD format. Example - '2025-05-10'
20
+ end_date: end date in YYYY-MM-DD fomrat. Example '2025-11-03'
21
  """
22
  FMP_KEY = os.getenv('FMP_KEY')
23