From b64d51c26f666db53753ee132b59dad4621f9edb Mon Sep 17 00:00:00 2001 From: Jeroen Bouma Date: Mon, 24 Jul 2023 12:19:07 +0200 Subject: [PATCH] Modify README to show that setting start and end dates exists --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 33cb5505..9d9bf6f1 100644 --- a/README.md +++ b/README.md @@ -81,13 +81,13 @@ A basic example of how to initialise the Finance Toolkit is shown below, also se ````python from financetoolkit import Toolkit -companies = Toolkit(['AAPL', 'MSFT'], api_key="FMP_KEY") +companies = Toolkit(['AAPL', 'MSFT'], api_key="FMP_KEY", start_date='2017-12-31') # an Enterprise example enterprise = companies.get_enterprise() # a Historical example -historical_data = companies.get_historical_data(start='2000-01-01', end='2020-01-01') +historical_data = companies.get_historical_data() # a Financial Statement example balance_sheet_statement = companies.get_balance_sheet_statement()