Stream Trade Count
Streams the real-time total number of trades executed during the current trading session. This is different from volume, which counts shares.
Supported Symbol Formats
| Type | Format | Example |
|---|---|---|
| US Stocks | SYMBOL | AAPL, MSFT |
| ETFs | SYMBOL | SPY, QQQ |
Notes
- Data streams automatically update in Excel
- Trade count resets at market open each day
- Useful for calculating average trade size
Examples
=QM_Stream_TradeCount("AAPL")=QM_Stream_TradeCount("MSFT")=QM_Stream_TradeCount("SPY")=QM_Stream_TradeCount(A1)=QM_Stream_Volume("AAPL")/QM_Stream_TradeCount("AAPL")When to Use
- Measuring trading activity intensity
- Calculating average trade size
- Detecting unusual trading patterns
- Market microstructure analysis
When NOT to Use
Common Issues & FAQ
Q: What's the difference between trade count and volume? A: Trade count is the number of individual trades; volume is the total number of shares traded.
Q: How do I calculate average trade size?
A: Use =QM_Stream_Volume("AAPL")/QM_Stream_TradeCount("AAPL").
