2024-10-01 17:09:48 +00:00
# RSI PowerZones
2024-10-01 17:18:22 +00:00
This strategy was taken from chapter 2 of [*Buy the Fear, Sell the Greed* ](https://moshferatu.dev/moshferatu/buy-the-fear-sell-the-greed ) (2018) by Larry Connors.
2024-10-01 17:23:13 +00:00
## Rules
1. The ETF (e.g., SPY) is trading above its 200-day simple moving average.
2. If the 4-period RSI closes < 30 , enter a long trade .
3. Enter a second long trade if the 4-period RSI closes < 25.
4. Exit the trade when the 4-period RSI closes > 55.
2024-10-01 17:36:34 +00:00
## Parameters
**RSI Period**: The period used in the RSI calculation. (Default: 4)
**RSI Smoothing**: The smoothing used in the RSI calculation. (Default: 1)
**First Entry Threshold**: The RSI value below which the first trade is entered. (Default: 30)
**Second Entry Threshold**: The RSI value below which the second trade is entered. (Default: 25)
**Exit Threshold**: The RSI value above which any trades are exited. (Default: 55)
**Long-Term Trend Period**: The period of the long-term trend as measured using a simple moving average. (Default: 200)
2024-10-02 20:59:18 +00:00
## Backtest Results
### SPY
![SPY Analysis ](https://static.moshington.com/images/strategies/rsi-power-zones/spy-analysis.png )
![SPY Summary ](https://static.moshington.com/images/strategies/rsi-power-zones/spy-summary.png )
2024-10-03 13:05:20 +00:00
### QQQ
![QQQ Analysis ](https://static.moshington.com/images/strategies/rsi-power-zones/qqq-analysis.png )
![QQQ Summary ](https://static.moshington.com/images/strategies/rsi-power-zones/qqq-summary.png )
2024-10-03 13:08:54 +00:00
### DIA
![DIA Analysis ](https://static.moshington.com/images/strategies/rsi-power-zones/dia-analysis.png )
![DIA Summary ](https://static.moshington.com/images/strategies/rsi-power-zones/dia-summary.png )
2024-10-03 13:13:23 +00:00
### IWM
![IWM Analysis ](https://static.moshington.com/images/strategies/rsi-power-zones/iwm-analysis.png )
![IWM Summary ](https://static.moshington.com/images/strategies/rsi-power-zones/iwm-summary.png )
2024-10-03 13:40:47 +00:00
### Sector ETFs
This backtest is an aggregation of the results of the following sector ETFs:
XLB, XLC, XLE, XLF, XLI, XLK, XLP, XLU, XLV, XLY
![Sector ETFs ](https://static.moshington.com/images/strategies/rsi-power-zones/sector-etfs.png )
2024-10-01 17:09:48 +00:00
---