Options Total Volume Historical
Returns the total options trading volume for an underlying security on a specific historical date.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| Underlying | string | Yes | Stock ticker symbol |
| PastDate | date | Yes | Historical date |
| Direction | string | Yes | "Call", "Put", or "All" |
Notes
- Useful for historical volume analysis
- Can filter by calls, puts, or all options
Examples
=opt_TotalVolumeOptionsHistorical("AAPL", DATE(2024,1,15), "Call")=opt_TotalVolumeOptionsHistorical("SPY", DATE(2024,3,1), "All")=opt_TotalVolumeOptionsHistorical("MSFT", DATE(2024,2,20), "Put")When to Use
- Historical options volume analysis
- Backtesting options strategies
- Volume pattern research
- Options activity studies
When NOT to Use
Common Issues & FAQ
Q: What dates are available? A: Historical data availability varies by symbol and data coverage.
Q: What does Direction filter? A: Use "Call" for calls only, "Put" for puts only, "All" for total volume.
