Description Usage Arguments Value Examples
Given the ticker, start date, and end date, return from the Intrinio API stock data for that time frame in either a dictionary or a pandas dataframe format.
1 2 3 4 5 6 7 | gather_stock_time_series(
api_key,
ticker,
start_date = "",
end_date = "",
allow_max_rows = FALSE
)
|
api_key |
character API key (sandbox or production) from Intrinio |
ticker |
character the ticker symbol you would like to get stock data for |
start_date |
character optional the earliest date in the format of " e.g. "2019-12-31" to get data for |
end_date |
character optional the most recent date in the format of " e.g. "2019-12-31" to get data for |
allow_max_rows |
boolean optional if False, then only 100 rows will show in the output, otherwise up to 10000 rows will show (based on dates) |
a dataframe that contains stock data for the specified timeframe
1 2 | gather_stock_time_series('OjhlMjhjNTBmY2IyMWJiMWE0MTExYjQwNWZmZTVkZWM1', 'AAPL',
"2017-12-31", "2019-03-01")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.