From 7bddc4e789e9da6e1ebf6b1e046c4db2887c2c9a Mon Sep 17 00:00:00 2001 From: moshferatu Date: Tue, 10 Dec 2024 10:39:44 -0800 Subject: [PATCH] Add parameters to Triple RSI Drop strategy documentation --- strategies/triple-rsi-drop/README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/strategies/triple-rsi-drop/README.md b/strategies/triple-rsi-drop/README.md index 7bb9fe1..3fe0776 100644 --- a/strategies/triple-rsi-drop/README.md +++ b/strategies/triple-rsi-drop/README.md @@ -12,4 +12,18 @@ This strategy was inspired by the following: 4. If the 5-period RSI closes below 30, enter a long trade. 4. Exit the trade when the 5-period RSI closes above 50. +## Parameters + +**Long-Term Trend Period**: The period of the long-term trend as measured using a simple moving average. (Default: 200) + +**RSI Period**: The period to use in the RSI calculation. (Default: 5) + +**Consecutive Days**: The number of consecutive days that RSI has to drop before entering a trade. (Default: 3) + +**First Day RSI**: The RSI value that the first day must be below in order to enter a trade. (Default: 60.0) + +**RSI Entry**: The RSI value below which to enter a trade. (Default: 30.0) + +**RSI Exit**: The RSI value above which to exit a trade. (Default: 50.0) + --- \ No newline at end of file