2024-09-29 12:47:00 +00:00
# RSI 10-6 / 90-94
2024-09-29 12:47:39 +00:00
This strategy was taken from chapter 7 of [*High Probability ETF Trading* ](https://moshferatu.dev/moshferatu/high-probability-etf-trading ) (2009) by Larry Connors.
2024-09-29 12:52:01 +00:00
## Rules
**10-6** (Long)
1. The ETF (e.g., SPY) is trading above its 200-day moving average.
2. When the 2-period RSI closes below 10, enter a long trade.
3. Enter a second long if the 2-period RSI closes below 6.
4. Exit the trade(s) when price closes above the 5-period moving average.
2024-09-29 12:53:30 +00:00
**90-94** (Short)
1. The ETF (e.g., SPY) is trading below its 200-day moving average.
2. When the 2-period RSI closes above 90, enter a short trade.
3. Enter a second short if the 2-period RSI closes above 94.
4. Exit the trade(s) when price closes below the 5-period moving average.
2024-09-29 13:17:58 +00:00
## Parameters
**Long-Term Trend Period**: The period of the long-term trend as measured using a simple moving average. (Default: 200)
**Short-Term Trend Period**: The period of the short-term trend as measured using a simple moving average. (Default: 5)
**RSI Period**: The period used in the RSI calculation. (Default: 2)
**RSI Smoothing**: The smoothing used in the RSI calculation. (Default: 1, no smoothing)
**Enable Long Trades**: Whether to enable taking long trades. (Default: true)
**RSI Long Entry 1**: The value of RSI under which to enter the first long trade. (Default: 10)
**RSI Long Entry 2**: The value of RSI under which to enter the second long trade. (Default: 6)
**Enable Short Trades**: Whether to enable taking short trades. (Default: true)
**RSI Short Entry 1**: The value of RSI above which to enter the first short trade. (Default: 90)
**RSI Short Entry 2**: The value of RSI above which to enter the second short trade. (Default: 94)
2024-09-29 13:21:03 +00:00
## Backtest Results
### SPY
![SPY Analysis ](https://static.moshington.com/images/strategies/rsi-10-6-90-94/spy-analysis.png )
![SPY Summary ](https://static.moshington.com/images/strategies/rsi-10-6-90-94/spy-summary.png )
2024-09-29 13:27:16 +00:00
### QQQ
![QQQ Analysis ](https://static.moshington.com/images/strategies/rsi-10-6-90-94/qqq-analysis.png )
![QQQ Summary ](https://static.moshington.com/images/strategies/rsi-10-6-90-94/qqq-summary.png )
2024-09-29 13:31:16 +00:00
### DIA
![DIA Analysis ](https://static.moshington.com/images/strategies/rsi-10-6-90-94/dia-analysis.png )
![DIA Summary ](https://static.moshington.com/images/strategies/rsi-10-6-90-94/dia-summary.png )
2024-09-29 13:33:42 +00:00
### IWM
![IWM Analysis ](https://static.moshington.com/images/strategies/rsi-10-6-90-94/iwm-analysis.png )
![IWM Summary ](https://static.moshington.com/images/strategies/rsi-10-6-90-94/iwm-summary.png )
2024-09-29 13:39:07 +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-10-6-90-94/sector-etfs.png )
2024-09-29 12:47:00 +00:00
---