Real-Time Intraday Volume
Returns the trading volume for a specific intraday time interval bar.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| Symbol | string | Yes | Stock ticker symbol |
| Interval | string | No | Time interval (1m, 5m, 15m, 30m, 60m) |
| Index | number | No | Bar index (0 = current, 1 = previous) |
Examples
=RTI_Volume("AAPL")=RTI_Volume("MSFT", "15m")=RTI_Volume("SPY", "5m", 1)When to Use
- Intraday volume analysis
- Volume breakout detection
- Day trading strategies
- Real-time charting
When NOT to Use
| Scenario | Use Instead |
|---|---|
| Daily volume | Volume() |
| Volume at specific time | RTI_VolumeAtMin() |
| Average volume | AverageDailyVolume() |
Common Issues & FAQ
Q: What intervals are available? A: Common intervals: 1m, 5m, 15m, 30m, 60m.
