Highest Price in X Minutes
Returns the highest traded price in the last X minutes.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| Symbol | string | Yes | Stock ticker symbol |
| MinutesAgo | number | Yes | Number of minutes to look back |
Examples
=RTI_HighestPrice_in_X_Mins("AAPL", 30)=RTI_HighestPrice_in_X_Mins("MSFT", 60)=RTI_HighestPrice_in_X_Mins("SPY", 15)When to Use
- Intraday resistance identification
- Range breakout analysis
- Day trading strategies
- Short-term high detection
When NOT to Use
| Scenario | Use Instead |
|---|---|
| Daily high | High() |
| Bar high | RTI_High() |
| Lowest price | RTI_LowestPrice_in_X_Mins() |
Common Issues & FAQ
Q: What's the maximum lookback? A: Typically limited to current trading day data.
