Returns a single dataframe with a symbols bars over a period of days
Returns a single dataframe with a symbols bars over a period of days
Only the symbol and start_date are required.
Interface client.get_bars(symbol, start_date, bar_length='minute', end_date=None)
Name | Type | Default | Description |
---|---|---|---|
symbol | string | required | The symbol to retrieve. |
start_date | string | required | The beginning date of the period to retrieve data for. |
bar_length | string | 'minute' | Valid values are "minute", "day", and "daily". |
end_date | string | None | The end date of the period to retrieve data for (inclusive). |
Type | Description |
---|---|
pandas.DataFrame | dataframe with a symbols bars over a period of days |