2024-08-30 14:52:29 +00:00
# Knife Catcher Bot
2024-08-30 15:39:44 +00:00
This swing trading strategy was taken from chapter 3 in *[Short Term Trading Strategies That Work](https://moshferatu.dev/moshferatu/short-term-trading-strategies-that-work)* (2008) by Larry Connors.
2024-08-30 14:52:29 +00:00
2024-08-30 14:55:07 +00:00
The strategy is not named as such in the book, but I thought it was fitting.
2024-08-30 14:52:29 +00:00
## Rules
1. Wait for the market (S& P 500 Index) to drop for 3 days in a row.
2. Enter a long on the following open.
3. Exit the trade 5 days later.
2024-08-30 15:27:05 +00:00
## Parameters
2024-08-30 15:38:51 +00:00
**Down Day Streak**: The number of consecutive days the market has to close lower for a long to be entered. (Default: 3)
2024-08-30 15:38:06 +00:00
2024-08-30 15:27:05 +00:00
**Bars to Exit**: The number of bars to wait before exiting the trade. (Default: 5)
2024-08-30 15:00:05 +00:00
## Backtest Results
### SPY
![SPY Analysis ](./backtest-results/spy_analysis.png )
![SPY Summary ](./backtest-results/spy_summary.png )
2024-08-30 15:04:12 +00:00
### QQQ
![QQQ Analysis ](./backtest-results/qqq_analysis.png )
![QQQ Summary ](./backtest-results/qqq_summary.png )
2024-08-30 14:52:29 +00:00
---