Skip to content

Commit

Permalink
Modify README to show that setting start and end dates exists
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeroen Bouma committed Jul 24, 2023
1 parent ab0aa04 commit b64d51c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit b64d51c

Please sign in to comment.