Intraday History 15 Minute Intervals
Returns intraday price data aggregated into 15-minute bars using QuoteMedia's data service.
Supported Symbol Formats
| Type | Format | Example |
|---|---|---|
| US Stocks | SYMBOL | AAPL, MSFT |
| ETFs | SYMBOL | SPY, QQQ |
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| Symbol | String | Yes | Stock ticker symbol |
Output Columns
| Column | Description |
|---|---|
| DateTime | Bar timestamp |
| Open | Opening price for the 15-min period |
| High | High price for the 15-min period |
| Low | Low price for the 15-min period |
| Close | Closing price for the 15-min period |
| Volume | Volume for the 15-min period |
Notes
- Each bar represents 15 minutes of trading
- Good balance between detail and noise reduction
- Popular timeframe for swing traders
Examples
=QM_GetIntradayDataFifteenMinutes("AAPL")=QM_GetIntradayDataFifteenMinutes("SPY")=QM_GetIntradayDataFifteenMinutes("MSFT")Symbol from cell reference
When to Use
- Swing trading analysis
- Medium-term intraday analysis
- Building 15-minute charts
- Less noisy than 5-minute data
When NOT to Use
Common Issues & FAQ
Q: How many 15-minute bars are in a trading day? A: Regular market hours (6.5 hours) produce 26 fifteen-minute bars per day.
Q: Why is the data not updating?
A: This is a static function. Use QM_GetIntradayDataFifteenMinutesDynamic() for auto-updating data.
Q: What timeframe of data is returned? A: Typically returns current/recent trading day data.
