Stock Prices
stock_pricesGet EOD historical stock prices for a ticker (open, high, low, close, volume, adjClose). Without a start_date, returns just the latest trading day. Example: stock_prices({ ticker: "AAPL", start_date: "2024-01-01", end_date: "2024-01-31", frequency: "daily" })
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ticker | Yes | Stock ticker symbol, e.g. "AAPL", "MSFT", "TSLA". Share classes accept either separator — "BRK.B" and "BRK-B" both work. | |
| _apiKey | No | Optional — your own Tiingo API key for higher limits; omit to use the shared Pipeworx key. | |
| end_date | No | End date in YYYY-MM-DD format (optional) | |
| frequency | No | Resample frequency (default "daily") | |
| start_date | No | Start date in YYYY-MM-DD format (optional). Omit to get only the latest day. |