Price History
Fetch historical OHLCV data from Yahoo Finance.
Instructions
Note: If uv is not installed or pyproject.toml is not found, replace uv run python with python in all commands below.
uv run python scripts/history.py SYMBOL [--period PERIOD] [--interval INTERVAL]
Arguments
SYMBOL - Ticker symbol
--period - Time period: 1d, 5d, 1mo, 3mo, 6mo, 1y, 2y, 5y, 10y, ytd, max (default: 1mo)
--interval - Data interval: 1m, 2m, 5m, 15m, 30m, 60m, 90m, 1h, 1d, 5d, 1wk, 1mo (default: 1d)
Output
Returns JSON with:
symbol - Ticker
period - Requested period
interval - Data interval
data - Array of {date, open, high, low, close, volume}
Summarize key price movements, highs/lows, and trends.
Dependencies
Timezone
All timestamps and time-based calculations must use the America/New_York timezone. All JSON output must include generated_at (NY time string) and data_delay fields.
1---2name: price-history3description: Get historical price data (OHLCV) for a stock. Use when user asks about price history, historical data, past performance, price over time, or needs data for chart analysis.4---56# Price History78Fetch historical OHLCV data from Yahoo Finance.910## Instructions1112> **Note:** If `uv` is not installed or `pyproject.toml` is not found, replace `uv run python` with `python` in all commands below.1314```bash15uv run python scripts/history.py SYMBOL [--period PERIOD] [--interval INTERVAL]16```1718## Arguments1920- `SYMBOL` - Ticker symbol21- `--period` - Time period: 1d, 5d, 1mo, 3mo, 6mo, 1y, 2y, 5y, 10y, ytd, max (default: 1mo)22- `--interval` - Data interval: 1m, 2m, 5m, 15m, 30m, 60m, 90m, 1h, 1d, 5d, 1wk, 1mo (default: 1d)2324## Output2526Returns JSON with:27- `symbol` - Ticker28- `period` - Requested period29- `interval` - Data interval30- `data` - Array of {date, open, high, low, close, volume}3132Summarize key price movements, highs/lows, and trends.3334## Dependencies3536- `yfinance`373839## Timezone4041All timestamps and time-based calculations must use the `America/New_York` timezone. All JSON output must include `generated_at` (NY time string) and `data_delay` fields.