2024-09-18 14:23:54 +00:00
# VIX Stretches
2024-09-18 14:24:47 +00:00
This strategy was taken from chapter 12 of [*Short Term Trading Strategies That Work* ](https://moshferatu.dev/moshferatu/short-term-trading-strategies-that-work ) (2008) by Larry Connors.
2024-09-18 14:49:23 +00:00
I would advise against trading this strategy as is, however.
Refer to the [backtest results ](#backtest-results ) in order to understand why.
2024-09-18 14:28:20 +00:00
## Rules
1. The asset (e.g., SPY) is above its 200-day moving average.
2. If VIX is stretched 5% or more above its 10-day moving average for 3 or more days, enter a long trade.
3. Exit the trade when the 2-period RSI closes at or above 65.
2024-09-18 14:32:53 +00:00
## Parameters
**Long-Term Trend Period**: The period of the long-term trend as measured using a simple moving average. (Default: 200)
**VIX Moving Average Period**: The period use to calculate the simple moving average of VIX. (Default: 10)
**VIX Stretch Days**: The minimum number of days required for VIX to be stretched above its moving average. (Default: 3)
**RSI Period**: The period of the RSI calculation used to exit trades. (Default: 2)
**RSI Smoothing**: The smoothing of the RSI calculation used to exit trades. (Default: 1)
**RSI Exit Threshold**: The value of the RSI calculation at or above which to exit trades. (Default: 65)
2024-09-18 14:41:51 +00:00
## Backtest Results
### SPY
![SPY Analysis ](https://static.moshington.com/images/strategies/vix-stretches/spy-analysis.png )
![SPY Summary ](https://static.moshington.com/images/strategies/vix-stretches/spy-summary.png )
2024-09-18 14:53:13 +00:00
### QQQ
![QQQ Analysis ](https://static.moshington.com/images/strategies/vix-stretches/qqq-analysis.png )
![QQQ Summary ](https://static.moshington.com/images/strategies/vix-stretches/qqq-summary.png )
2024-09-18 14:23:54 +00:00
---