From f25f905e6a69757385edc8310ae52422998a05b7 Mon Sep 17 00:00:00 2001 From: moshferatu Date: Wed, 28 Aug 2024 12:22:18 -0700 Subject: [PATCH] Update ConnorsRSI strategy rules to mention default indicator parameters --- strategies/connors-rsi/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/strategies/connors-rsi/README.md b/strategies/connors-rsi/README.md index 5fee39a..21e1e07 100644 --- a/strategies/connors-rsi/README.md +++ b/strategies/connors-rsi/README.md @@ -6,8 +6,8 @@ A swing trading strategy inspired by the [ConnorsRSI indicator](https://moshfera For a long trade: -* The closing price must be greater than the long term trend as measured by a simple moving average with a default period of 200 days. -* The ConnorsRSI indicator must have a reading of < 15 (default value). +* The closing price must be > the long term trend as measured by a simple moving average with a default period of 200 days. +* The ConnorsRSI indicator (default parameters) must have a reading of < 15 (default value). * If both of the above conditions are met, the trade is entered. * The trade is exited when the close is > the short term trend which is measured by a simple moving average with a default period of 5 days.