Add rules for trades on declines to Advances and Declines documentation

This commit is contained in:
moshferatu 2024-11-15 06:14:32 -08:00
parent f75b2bbaac
commit 0b9ac8c556

View File

@ -9,7 +9,13 @@ As with most of the strategies from this book, they are meant to illustrate cert
### Advances ### Advances
1. The asset (e.g., SPY) must be above its 200-day moving average. 1. The asset (e.g., SPY) must be above its 200-day moving average.
2. If the ratio of advances to declines is at least 2 : 1, enter a long trade. 2. If the ratio of **advances to declines** is at least 2 : 1, enter a long trade.
3. Exit the trade after 5 trading days (~1 week).
### Declines
1. The asset (e.g., SPY) must be above its 200-day moving average.
2. If the ratio of **declines to advances** is at least 2 : 1, enter a long trade.
3. Exit the trade after 5 trading days (~1 week). 3. Exit the trade after 5 trading days (~1 week).
--- ---