2024-12-09 22:14:12 +00:00
# Triple RSI Drop
2024-12-10 18:31:15 +00:00
This strategy was inspired by the following:
[![Triple RSI Drop Rules ](https://static.moshington.com/images/strategies/triple-rsi-drop/strategy-rules.png )](https://x.com/QuantifiedStrat/status/1702712880334786783)
2024-12-10 18:34:47 +00:00
## Rules
1. The asset (e.g., SPY) must be above its 200-day moving average.
2. The 5-period RSI must have been below 60 3 days ago.
3. The 5-period RSI has dropped for 3 days in a row.
4. If the 5-period RSI closes below 30, enter a long trade.
4. Exit the trade when the 5-period RSI closes above 50.
2024-12-10 18:39:44 +00:00
## Parameters
**Long-Term Trend Period**: The period of the long-term trend as measured using a simple moving average. (Default: 200)
**RSI Period**: The period to use in the RSI calculation. (Default: 5)
**Consecutive Days**: The number of consecutive days that RSI has to drop before entering a trade. (Default: 3)
**First Day RSI**: The RSI value that the first day must be below in order to enter a trade. (Default: 60.0)
**RSI Entry**: The RSI value below which to enter a trade. (Default: 30.0)
**RSI Exit**: The RSI value above which to exit a trade. (Default: 50.0)
2024-12-10 18:42:04 +00:00
## Backtest Results
### SPY
![SPY Analysis ](https://static.moshington.com/images/strategies/triple-rsi-drop/spy-analysis.png )
![SPY Summary ](https://static.moshington.com/images/strategies/triple-rsi-drop/spy-summary.png )
2024-12-10 18:44:14 +00:00
### QQQ
![QQQ Analysis ](https://static.moshington.com/images/strategies/triple-rsi-drop/qqq-analysis.png )
![QQQ Summary ](https://static.moshington.com/images/strategies/triple-rsi-drop/qqq-summary.png )
2024-12-09 22:14:12 +00:00
---