From 10791ffaa51900aad5205ac14040894f43f71cc3 Mon Sep 17 00:00:00 2001 From: moshferatu Date: Sun, 24 Nov 2024 00:59:36 -0800 Subject: [PATCH] Add parameters to 2-Period RSI Highs and Lows strategy documentation --- strategies/2-period-rsi-highs-and-lows/README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/strategies/2-period-rsi-highs-and-lows/README.md b/strategies/2-period-rsi-highs-and-lows/README.md index 4c57236..4d610f9 100644 --- a/strategies/2-period-rsi-highs-and-lows/README.md +++ b/strategies/2-period-rsi-highs-and-lows/README.md @@ -22,4 +22,16 @@ The 2-period RSI entry thresholds differ from the book as they led to improved b I also wanted to avoid overlap with the [2-Period RSI strategy](https://moshferatu.dev/moshferatu/ninjatrader/src/branch/main/strategies/2-period-rsi) from [Short Term Trading Strategies That Work](https://moshferatu.dev/moshferatu/short-term-trading-strategies-that-work). +## Parameters + +**RSI Period**: The period to use in the RSI calculation. (Default: 2) + +**RSI Smoothing**: The smoothing to use in the RSI calculation. (Default: 1) + +**RSI Entry**: The RSI entry threshold value. (Default: 85 for highs, 15 for lows) + +**Long-Term Trend Period**: The period of the long-term trend as measured using a simple moving average. (Default: 200) + +**Days to Exit**: The number of days to wait before exiting a trade. (Default: 5) + --- \ No newline at end of file