- Flink update_bars debouncing - update_bars subscription idempotency bugfix - Price decimal correction bugfix of previous commit - Add GLM-5.1 model tag alongside renamed GLM-5 - Use short Anthropic model IDs (sonnet/haiku/opus) instead of full version strings - Allow @tags anywhere in message content, not just at start - Return hasOtherContent flag instead of trimmed rest string - Only trigger greeting stream when tag has no other content - Update workspace knowledge base references to platform/workspace and platform/shapes - Hierarchical knowledge base catalog - 151 Trading Strategies knowledge base articles - Shapes knowledge base article - MutateShapes tool instead of workspace patch
2.6 KiB
2.6 KiB
description, tags
| description | tags | |||
|---|---|---|---|---|
| Buys stocks with the largest monthly increases in call implied volatility and shorts stocks with the largest increases in put implied volatility, exploiting the options market's directional information. |
|
Implied Volatility
Section: 3.5 | Asset Class: Stocks | Type: Options-Based / Signal
Overview
This strategy is based on the empirical observation that stocks with larger increases in call implied volatilities over the previous month have higher average future returns, while stocks with larger increases in put implied volatilities over the previous month have lower average future returns. The options market contains forward-looking information about stock direction that can be exploited cross-sectionally.
Construction / Signal
The signal is the monthly change in implied volatility for calls and puts separately:
- Call IV change:
Delta_call_IV_i= change in call implied volatility for stockiover the previous month - Put IV change:
Delta_put_IV_i= change in put implied volatility for stockiover the previous month
Primary portfolio construction:
- Buy stocks in the top decile by increase in call implied volatility (large call IV increases → bullish signal)
- Short stocks in the top decile by increase in put implied volatility (large put IV increases → bearish signal)
- Dollar-neutral construction.
Entry / Exit Rules
- Entry: At monthly rebalance, rank stocks by their respective IV change signals and enter positions as described.
- Exit: Hold for approximately 1 month before rebalancing.
Key Parameters
- Lookback: 1 month for IV change computation
- Holding period: Typically 1 month
- Portfolio construction: Dollar-neutral long/short
Variations
- Difference signal: Instead of two separate portfolios (long high-call-IV, short high-put-IV), construct a single signal based on the difference between the change in call implied volatility and the change in put implied volatility:
Buy top-decile by this difference, short bottom-decile.
Signal_i = Delta_call_IV_i - Delta_put_IV_i
Notes
- Requires options market data (implied volatility surfaces or at-the-money IV for calls and puts).
- The empirical evidence suggests options markets reflect informed trading that leads equity prices.
- Transaction costs in options markets can be high; the strategy operates on stock positions, not option positions.
- Monthly rebalancing is typical given the 1-month signal horizon.
- Can be combined with other momentum or factor signals in a multifactor framework.