Add rules to Put / Call Ratio Highs and Lows strategy documentation

This commit is contained in:
moshferatu 2024-11-22 11:53:29 -08:00
parent 6f763721c6
commit 23df192117

View File

@ -6,4 +6,18 @@ As with most of the strategies from this book, they are meant to illustrate cert
The strategies are based on the [Put / Call Ratio indicator](https://moshferatu.dev/moshferatu/ninjatrader/src/branch/main/indicators/put-call-ratio) which calculates the total put options volume divided by the total call options volume. The strategies are based on the [Put / Call Ratio indicator](https://moshferatu.dev/moshferatu/ninjatrader/src/branch/main/indicators/put-call-ratio) which calculates the total put options volume divided by the total call options volume.
## Rules
### Put / Call Ratio Highs
1. The asset (e.g., SPY) is above its 200-day moving average.
2. If the Put / Call ratio closes at a 5-day high, enter a long trade.
3. Exit the trade after 5 trading days (~1 week).
### Put / Call Ratio Lows
1. The asset (e.g., SPY) is above its 200-day moving average.
2. If the Put / Call ratio closes at a 5-day low, enter a long trade.
3. Exit the trade after 5 trading days (~1 week).
--- ---