2024-11-09 13:58:57 +00:00
# Connors VIX Reversal 3
2024-11-09 14:08:06 +00:00
This strategy was taken from chapter 2 of [*Connors on Advanced Trading Strategies* ](https://moshferatu.dev/moshferatu/connors-on-advanced-trading-strategies ) (1998).
2024-11-13 15:05:38 +00:00
It is the third and final [Connors VIX Reversal ](https://moshferatu.dev/moshferatu/ninjatrader/src/branch/main/strategies/connors-vix-reversals ) presented in the book.
## Rules
2024-11-13 15:04:39 +00:00
2024-11-13 15:10:42 +00:00
1. The low of the VIX must be above its 10-day moving average.
2. If the VIX closes at least 10% above its 10-day moving average, enter a long trade.
3. Exit the trade when VIX trades (intraday) below the previous day's 10-day moving average.
2024-11-13 15:17:32 +00:00
I have decided not to include short trades like in the book as the backtest results were consistently negative.
2024-11-13 15:16:33 +00:00
## Parameters
**Short-Term Trend Period**: The period of the short-term trend as measured using a simple moving average. (Default: 50, differs from the book)
**Percent Above**: The percentage above the short-term trend VIX must close in order to enter a long trade. (Default: 10)
2024-11-13 15:20:26 +00:00
## Backtest Results
### SPY
![SPY Analysis ](https://static.moshington.com/images/strategies/connors-vix-reversal-3/spy-analysis.png )
![SPY Summary ](https://static.moshington.com/images/strategies/connors-vix-reversal-3/spy-summary.png )
2024-11-13 15:24:47 +00:00
### QQQ
![QQQ Analysis ](https://static.moshington.com/images/strategies/connors-vix-reversal-3/qqq-analysis.png )
![QQQ Summary ](https://static.moshington.com/images/strategies/connors-vix-reversal-3/qqq-summary.png )
2024-11-09 13:58:57 +00:00
---