From eb9c2b4310087c9e2e05b824f7302c85cb26bbbd Mon Sep 17 00:00:00 2001 From: lucaswrao Date: Sun, 2 Feb 2025 02:13:37 +0300 Subject: [PATCH] Update README.md --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fe285e2..2dcbf9f 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,13 @@ # advansed-crypto-signal-bot -How to Use: -Install the required dependencies (such as ccxt, numpy, and time). +This code detects divergence between price and RSI. The last three values of price and RSI are considered. If price and the indicator change in different directions, this may signal divergence: + +Bullish Divergence: Price is falling, while RSI is rising. + +Bearish Divergence: Price is rising, while RSI is falling. The strength of the divergence is also determined based on the difference between the RSI values over the last two periods: weak (less than 5), moderate (5 to 10) +and strong (greater than 10). + +Thus, this script helps automate cryptocurrency market monitoring, track potential trading signals based on price and RSI changes, and identify possible divergences. Define the list of coins you want to track in the COINS variable.