Stream Price Change
Streams the real-time price change in dollars from the previous day's closing price. Positive values indicate the stock is up, negative values indicate it is down.
Supported Symbol Formats
| Type | Format | Example |
|---|---|---|
| US Stocks | SYMBOL | AAPL, MSFT |
| ETFs | SYMBOL | SPY, QQQ |
| Indices | ^SYMBOL | ^SPX, ^VIX |
| Options | OCC Symbol | AAPL240315C00170000 |
Notes
- Data streams automatically update in Excel
- Change = Last Price - Previous Close
- Use with
QM_Stream_PercentageChange()for relative performance
Examples
=QM_Stream_Change("AAPL")=QM_Stream_Change("MSFT")=QM_Stream_Change("SPY")=QM_Stream_Change(A1)=IF(QM_Stream_Change("AAPL")>0,"UP","DOWN")When to Use
- Monitoring daily price movements
- Building gain/loss dashboards
- Alert triggers based on dollar moves
- Portfolio change calculations
When NOT to Use
Common Issues & FAQ
Q: Why is the change showing as zero before market open? A: Before the market opens, there's no new trading activity to compare against previous close.
Q: How do I calculate percentage change from dollar change?
A: Use =QM_Stream_Change("AAPL")/QM_Stream_PreviousClose("AAPL")*100 or just use QM_Stream_PercentageChange().
Q: Why am I getting #N/A? A: Check that symbol format is correct.
