Stream Is Annual Low
Streams a real-time boolean indicator showing whether the stock is currently trading at its 52-week (annual) low. Returns TRUE if at or near the annual low, FALSE otherwise.
Supported Symbol Formats
| Type | Format | Example |
|---|---|---|
| US Stocks | SYMBOL | AAPL, MSFT |
| ETFs | SYMBOL | SPY, QQQ |
Notes
- Data streams automatically update in Excel
- Useful for identifying oversold conditions
- Combine with
QM_Stream_IsAnnualHigh()for range analysis
Examples
=QM_Stream_IsAnnualLow("AAPL")=QM_Stream_IsAnnualLow("MSFT")Symbol from cell reference
=IF(QM_Stream_IsAnnualLow("AAPL"),"NEW LOW","Not at low")When to Use
- Screening for stocks at new lows
- Identifying potential value opportunities
- Contrarian investment signals
- Risk monitoring
When NOT to Use
| Scenario | Use Instead |
|---|---|
| Need actual 52-week low price | 52WeekLow() |
| Need annual high indicator | QM_Stream_IsAnnualHigh() |
| Need session low price | QM_Stream_Low() |
| Need historical low | Low_Historical() |
Common Issues & FAQ
Q: What counts as "annual low"? A: This typically means the stock is at or very near its 52-week low price.
Q: How do I get the actual low price?
A: Use 52WeekLow() to get the actual 52-week low price value.
Q: Why am I getting #N/A? A: Check that symbol format is correct.
