get_quote_history_price
Retrieve historical stock price quotes for a given symbol and date range, with customizable intervals and output formats optimized for AI analysis.
Instructions
Get quote price history of a symbol from stock market Args: symbol: str (symbol to get history price) start_date: str (format: YYYY-MM-DD) end_date: str = None (end date to get history price. None means today) interval: Literal['1m', '5m', '15m', '30m', '1H', '1D', '1W', '1M'] = '1D' (interval to get history price) output_format: Literal['json', 'dataframe', 'toon'] = 'toon' (output format, 'toon' is optimized for AI) Returns: pd.DataFrame
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | ||
| start_date | Yes | ||
| end_date | No | ||
| interval | No | 1D | |
| drop_market_close | No | ||
| output_format | No | toon |