2024-10-04 13:10:42 +00:00
# Vol Panics
2024-10-04 13:14:38 +00:00
This strategy was taken from chapter 5 of [*Buy the Fear, Sell the Greed* ](https://moshferatu.dev/moshferatu/buy-the-fear-sell-the-greed ) (2018) by Larry Connors.
2024-10-04 13:20:23 +00:00
## Rules
1. When VXX is trading above its 5-period moving average and its 4-period RSI is > 70, enter a short trade.
2. Exit the trade if VXX closes under its 5-period moving average.
2024-10-04 13:22:19 +00:00
## Parameters
**Moving Average Period**: The period used in the simple moving average calculation. (Default: 5)
**RSI Period**: The period used in the RSI calculation. (Default: 4)
**RSI Smoothing**: The smoothing used in the RSI calculation. (Default: 1)
**Entry Threshold**: The RSI value above which to enter the short trade. (Default: 70)
2024-10-05 13:16:18 +00:00
## Backtest Results
### /VX
2024-10-05 13:16:56 +00:00
Note that these backtests were performed on /VX (VIX futures) rather than on the VXX etf.
This is because the data feed I am using had very limited data available for VXX.
2024-10-05 13:16:18 +00:00
![/VX Analysis ](https://static.moshington.com/images/strategies/vol-panics/vx-analysis.png )
![/VX Summary ](https://static.moshington.com/images/strategies/vol-panics/vx-summary.png )
2024-10-05 13:18:18 +00:00
Hopefully these results demonstrate why you must be extremely careful when shorting volatility.
2024-10-04 13:10:42 +00:00
---