2024-08-27 19:47:23 +00:00
# ConnorsRSI Bot
2024-08-29 12:28:46 +00:00
A swing trading strategy inspired by the [ConnorsRSI indicator ](https://moshferatu.dev/moshferatu/ninjatrader/src/branch/main/indicators/connors-rsi ) developed by Larry Connors.
2024-08-28 19:02:47 +00:00
## Rules
For a long trade:
2024-08-28 19:22:18 +00:00
* The closing price must be > the long term trend as measured by a simple moving average with a default period of 200 days.
* The ConnorsRSI indicator (default parameters) must have a reading of < 15 ( default value ).
2024-08-28 19:02:47 +00:00
* If both of the above conditions are met, the trade is entered.
* The trade is exited when the close is > the short term trend which is measured by a simple moving average with a default period of 5 days.
For short trades, the conditions are inverted.
2024-08-28 19:28:06 +00:00
## Parameters
**RSI Period**: The RSI period used in the ConnorsRSI calculation. (Default value: 3)
**Streak RSI Period**: The RSI period used in the ConnorsRSI daily up / down streak calculation. (Default value: 2)
**Percent Rank Period**: The percent rank period used in the ConnorsRSI price magnitude calculation. (Default value: 100)
2025-01-09 16:16:11 +00:00
**Long Entry Threshold**: The ConnorsRSI value below which to enter long trades. (Default: 15)
**Short Entry Threshold**: The ConnorsRSI value above which to enter short trades. (Default: 85)
2024-08-28 19:28:06 +00:00
**Long Term Trend Period**: The simple moving average period used to determine the long term trend. (Default value: 200)
**Short Term Trend Period**: The simple moving average period used to determine the short term trend. (Default value: 5)
2024-08-27 19:47:23 +00:00
## Backtest Results
### SPY
2025-01-09 16:08:48 +00:00
![SPY Analysis ](https://static.moshington.com/images/strategies/connors-rsi/spy-analysis.png )
2024-08-27 19:47:23 +00:00
2025-01-09 16:08:48 +00:00
![SPY Summary ](https://static.moshington.com/images/strategies/connors-rsi/spy-summary.png )
2024-08-27 19:47:23 +00:00
2024-08-28 18:44:50 +00:00
### QQQ
2025-01-09 16:08:48 +00:00
![QQQ Analysis ](https://static.moshington.com/images/strategies/connors-rsi/qqq-analysis.png )
2024-08-28 18:44:50 +00:00
2025-01-09 16:08:48 +00:00
![QQQ Summary ](https://static.moshington.com/images/strategies/connors-rsi/qqq-summary.png )
2024-08-28 18:44:50 +00:00
2024-08-27 19:47:23 +00:00
---