The easiest way to use divergences in your own Pine strategiesDetecting divergences in a Pine indicator / strategy is easy.
You simply have to compare the pivot lows and the pivot highs on the price and the oscillator, and if you can identify a difference between the last & previous pivots made on the price and the oscillator, you have likely found a divergence.
Using this theory, here is an example how you would detect a Regular Bearish divergence:
While the theory of divergence detection is simple, more often than not, things go wrong (the divergence indicator used in the example below is TradingView's built-in Divergence Indicator ):
Would you identify this as a divergence? If not, why not? Is it because the divergence line is slicing through the candles? Or because the line is slicing through the oscillator? Or something else?
Wouldn't it be great if somehow you could filter out invalid divergences from code, such as this one?
We at Whitebox Software were wondering about the same thing, and decided to find a solution to this problem. This is when we realised that while detecting divergences is easy, detecting valid divergences is hard...
After several months in development, we are proud to present to you our divergence indicator called The Divergent .
The Divergent is an advanced divergence indicator with over 2500 lines of Pine Script, exposing over 30 different configuration options, including 9 built-in oscillators, to allow you to tweak every aspect of divergence detection to perfection.
For example, the Line of Sight™ filter in The Divergent would have easily filtered out this invalid divergence above. The Line of Sight™ filter will notice any interruption to the divergence line connecting the price or the oscillator, and will treat the divergence as invalid.
This filter is one of many, which has been created to reduce the false positive detections to a minimum. (In later publications, we will discuss each and every filter in detail).
Alright, so The Divergent knows how to detect accurate divergences, but how is it going to help you detect divergences in your own Pine strategy?
The Divergent is not simply a divergence indicator - it can also emit divergence signals * which you can catch and process in your own strategy. You can think of The Divergent being a DaaS ( D ivergences a s a S ervice)!
* Please note, that divergence signals is a Pro only feature.
To use the signals, simply place The Divergent onto the same chart you have your strategy on, import "The Divergent Library" into your code, link your strategy to The Divergent using a "source" input, and act on the signals produced by The Divergent !
Here is a simple strategy which incorporates divergence signals produced by The Divergent in its entry condition. The strategy will only open a position, if the moving average cross is preceded by a regular bullish or bearish divergence (depending on the direction of the cross):
//@version=5
strategy("My Strategy with divergences", overlay=true, margin_long=100, margin_short=100)
import WhiteboxSoftware/TheDivergentLibrary/1 as tdl
float divSignal = input.source(title = "The Divergent Link", defval = close)
var bool tdlContext = tdl.init(divSignal, displayLinkStatus = true, debug = false)
// `divergence` can be one of the following values:
// na → No divergence was detected
// 1 → Regular Bull
// 2 → Regular Bull early
// 3 → Hidden Bull
// 4 → Hidden Bull early
// 5 → Regular Bear
// 6 → Regular Bear early
// 7 → Hidden Bear
// 8 → Hidden Bear early
//
// priceStart is the bar_index of the starting point of the divergence line drawn on price
// priceEnd is the bar_index of the ending point of the divergence line drawn on price
//
// oscStart is the bar_index of the starting point of the divergence line drawn on oscillator
// oscEnd is the bar_index of the ending point of the divergence line drawn on oscillator
= tdl.processSignal(divSignal)
bool regularBullSignalledRecently = ta.barssince(divergence == 1) < 10
bool regularBearSignalledRecently = ta.barssince(divergence == 5) < 10
float slowSma = ta_sma(close, 28)
float fastSma = ta_sma(close, 14)
longCondition = ta.crossover(fastSma, slowSma) and regularBullSignalledRecently
if (barstate.isconfirmed and longCondition and strategy.position_size == 0)
strategy.entry("Enter Long", strategy.long)
strategy.exit("Exit Long", "Enter Long", limit = close * 1.04, stop = close * 0.98)
shortCondition = ta.crossunder(fastSma, slowSma) and regularBearSignalledRecently
if (barstate.isconfirmed and shortCondition and strategy.position_size == 0)
strategy.entry("Enter Short", strategy.short)
strategy.exit("Exit Short", "Enter Short", limit = close * 0.96, stop = close * 1.02)
plot(slowSma, color = color.white)
plot(fastSma, color = color.orange)
One important thing to note, is that TradingView limits the number of "source" inputs you can use in an indicator / strategy to 1, so the source input linking your strategy and The Divergent is the only source input you can have in your strategy. There is a work around this limitation though. Simply convert the other source inputs to have a string type, and use a dropdown to provide the various sources:
string mySource = input.string("My source", defval = "close", options = )
float sourceValue = switch mySource
"close" => close
"open" => open
"high" => high
"low" => low
=> na
---
This is where we are going to wrap up this article.
We hope you will find the signals produced by The Divergent a useful addition in your own strategies!
For more info on the The Divergent (Free) and The Divergent (Pro) indicators please see the linked pages.
If you have any questions, don't hesitate to reach out to us either via our website or via the comment section below.
If you found value in this article please give it a thumbs up!
Thank you!
Divergence
A lesson in Daily Negative DivergenceFor context of how powerful negative divergence can be (or positive divergence for that matter)
here we have BTC at its first top this year. To my amazement it recovered, as I thought it would
just never get back up again. This is in the daily time frame. Indexes are exhibiting a similar
technical condition but in the weekly time frame.
How To Spot Divergence Without IndicatorsHey y'all… The highly requested—Is here.
Most of us love the idea of a bare chart… but can't seem to let go of the values—by indicators.
One of the most important signals in—Nasdaq100 are divergence.
Pfft… So, I thought… Why not make it easy?
This is my own theory—So… you might not get it on YouTube or books.
I figured this out with experience. Use it wisely; Thank me later.
Cheers,
Lazyluchi
How to catch the TOP : BitcoinRSI Divergence (Bearish): When the price goes high but the RSI goes lower
RSI Divergence (Bullish): When the price goes lower but the RSI goes higher
These can indicate a shift in momentum in the underlying market.
Using the RSI divergence is a great tool to help you find when the price is getting ready for a correction. Keep an eye on bearish RSI divergences on the Bitcoin chart to help you find when a correction will talk place. Conversely, an RSI bullish divergence will indicate potential buying positions.
We are using the Daily time frame to search for RSI divergence on Bitcoin for a major shift in momentum. These can be found on all time frames, the larger time frames the more dramatic the move will potentially be.
Trading View also has an indicator that will find these divergences automatically for your for assistance. "Divergence Indicator" in the built-in indicators.
Volume-Weighted Divergence Play on AAPL 10R via NEXT RSINEXT RSI Divergence Play: Key Concepts
- NEXT RSI is a low-lag, volume-weighted momentum oscillator that often precedes price action
- Divergence play resets at each open (do not count prior session's highs and lows)
- Use as you would other divergence strategies: higher price highs, lower NEXT RSI highs = bearish; lower price lows, higher NEXT RSI lows = bullish
-Use a preset TP / SL and/or close if NEXT RSI retraces back to last relevant high or low
Target Market:
- AAPL 10R Chart
- can be used with almost any market; volatility helps
Order Management:
- Enter on forming divergence, 2 or more clearly separated peaks or troughs
- TP / SL at 30 cents (AAPL)
- Exit if price retraces to the last NEXT RSI top or bottom referenced when opening the position
Optional:
- Additional NEXT RSI strategies can be discovered using the free companion NEXT Strategy Visualizer
VVV destroyer StrategieOANDA:GBPUSD
We got here a clear signal from the VVV strategy
The Rules played OUT as well
We got a confirmation from the VPSV area
Entering the red momentum
Destroyer Cross to the inside
Down the zero line we can follow up the chart
Higher price same volume thats also a WEAK divergence on the chart
Count the confirmations
Example of Shorting SPY w PSI and comparison w RSIThis is an example of Shorting SPY at the High and a comparison of RSI and Price Strength Index (PSI).
AMEX:SPY made a great upside move towards 450 and then 453 on a valid strong move after a bounce of higher Low.
Then, it made a pullback to 450 and made a retest of 453 to go higher.
Price action w PSI analysis
On 4H chart, at the second test of 453, buyer is significantly weaker because it did not even break or test previous High of the PSI 4H. PSI 4H had already shown obvious divergence even before the retest of 453, and when it retest 453 and failed, this give confidence to Short.
Now on Daily, at the second test to 453, PSI shows that the move is not even strong at all. It actually made a lower High on PSI, now confirms the divergence shown on lower time frame 4h. This gives another confidence boost to Short.
With these confluence, this gives a good confidence to Short.
Price action w RSI analysis
On 4H chart, the RSI 4H appears to look good for a push to break that 453 and go into overbought level. Even at the retest of 453, while price action shows that rejection (Red Topping Tail candle), RSI however still looks somewhat okay because it still holding on above 60 and near to previous Low.
On the Daily, RSI is showing that it is still in the direction of the trend to push higher.
To conclude, this is not looking clear, there is a difference of information on 4H and Daily. While RSI on 4H does indeed shows some weakness, RSI on Daily still going strong on uptrend. This does not gives confidence to Short.
PSI vs RSI
While both are useful, PSI do appear to have better clarity of strength/momentum in comparison to RSI.
DISCLAIMER: Nothing in this content should be interpreted as financial advice or a recommendation to buy or sell any sort of security, investment, currencies or assets. This is for educational purposes only.
Here is Why RSI Divergence Will Increase Your ProfitsRSI can be beneficial in your trading if you use it correctly. This printable cheat sheet will assist you in divergence, so you can trade more precisely and increase your profits.
To print this cheat sheet, Right-click the illustration below and then click Save as Picture.
What Is RSI Divergence? With RSI divergence, the relative strength index of a specific asset shows lower highs when the price uptrend hits higher highs. Conversely, when the price is trending downward, it will hit lower lows with divergence while the RSI hits higher lows.
In a bullish divergence scenario you will see RSI show what is called being OVERSOLD and you will see price action form a lower low while the indicator shows a higher low. This represents a transition of volume from seller to buyers and the last push lower is sellers LAST attempt to take control.
The opposite is true for a bearish divergence scenario. You will see price action form a higher high, the last attempt from buyers, while RSI shows a lower high. This is a classic OVERBOUGHT setup and can be very profitable when combined with the rest of your technical analysis.
Those setups give us reversal signal in trending markets as well as ranging markets.
Keep in mind using one strategy is not enough to have consistent profits. Use combinations of strategies and setups to increase your winning rate. Always trade with affordable risk.
What indicator do you use for Divergence? Let us know in the comments
Have a best profits
Artem Shevelev
Chaikin Oscillator From ScratchHi, traders!
Today we'll speak about one of the most pretty instrument of divergence detection.
The Chaikin oscillator is named for its creator Marc Chaikin.1
The oscillator measures the accumulation-distribution line of moving average convergence-divergence (MACD). To calculate the Chaikin oscillator, subtract a 10-day exponential moving average (EMA) of the accumulation-distribution line from a 3-day EMA of the accumulation-distribution line. This measures momentum predicted by oscillations around the accumulation-distribution line.
The purpose of the Chaikin oscillator is to identify underlying momentum during fluctuations in accumulation-distribution. Specifically, it applies the MACD indicator to accumulation-distribution rather than closing prices.
For example, a trader wants to determine whether a coin price is more likely to go up or to fall and MACD is trending higher. The Chaikin oscillator generates a bullish divergence when it crosses above a baseline. The baseline is called the accumulation-distribution line. A cross above that line indicates that traders are accumulating, which is typically bullish.
The Chaikin oscillator utilizes two primary buy and sell signals. First, a positive divergence is confirmed with a center-line crossover above the accumulation-distribution line, signaling a potential buying opportunity. Second, a negative divergence is confirmed with a center-line crossover below the accumulation-distribution line, signaling a potential selling opportunity.
A positive divergence signals a coin price is likely to rise, given the increase in accumulation. A negative divergence signals a coin price is likely to fall, given the increase in distribution.
DISCLAMER: Information is provided only for educational purposes. Do your own study before taking any actions or decisions at the real market.
📉 Your Ultimate Guide to RSI Divergence (Settings & Tips) 📈
Hey traders,
Relative strength index is a classic technical indicator .
It is frequently applied to spot a market reversal.
RSI divergence is considered to be a quite reliable signal of a coming trend violation and change .
Though newbie traders think that the application of the divergence is quite complicated, in practice, you can easily identify it with the following tip s:
💠First of all, let's start with the settings .
For the input , we will take 7/close .
For the levels , we will take 80/20 .
Then about the preconditions :
1️⃣ Firstly, the market must trade in a trend (bullish or bearish)
with a sequence of lower lows / lower highs (bearish trend) or higher highs / higher lows (bullish trend).
2️⃣ Secondly, RSI must reach the overbought/oversold condition (80/20 levels) with one of the higher highs/higher lows.
3️⃣ Thirdly, with a consequent market higher high / lower low, RSI must show the lower high / higher low instead.
➡️ Once all these conditions are met, you spotted RSI Divergence .
A strong counter-trend movement will be expected.
Also, I should say something about a time frame selection .
Personally, I prefer to apply it on a daily time frame , however, I know that scalpers apply divergence on intraday time frames as well.
❗️Remember, that it is preferable to trade the divergence in a combination with some price action pattern or some other reversal signal.
❤️Please, support this idea with a like and comment!❤️
📉 Your Ultimate Guide to RSI Divergence (Settings & Tips) 📈
Hey traders,
Relative strength index is a classic technical indicator .
It is frequently applied to spot a market reversal.
RSI divergence is considered to be a quite reliable signal of a coming trend violation and change .
Though newbie traders think that the application of the divergence is quite complicated, in practice, you can easily identify it with the following tip s:
💠First of all, let's start with the settings .
For the input , we will take 7/close .
For the levels , we will take 80/20 .
Then about the preconditions :
1️⃣ Firstly, the market must trade in a trend (bullish or bearish)
with a sequence of lower lows / lower highs (bearish trend) or higher highs / higher lows (bullish trend).
2️⃣ Secondly, RSI must reach the overbought/oversold condition (80/20 levels) with one of the higher highs/higher lows.
3️⃣ Thirdly, with a consequent market higher high / lower low, RSI must show the lower high / higher low instead.
➡️ Once all these conditions are met, you spotted RSI Divergence .
A strong counter-trend movement will be expected.
Also, I should say something about a time frame selection .
Personally, I prefer to apply it on a daily time frame , however, I know that scalpers apply divergence on intraday time frames as well.
❗️Remember, that it is preferable to trade the divergence in a combination with some price action pattern or some other reversal signal.
❤️Please, support this idea with a like and comment!❤️
How to use RSI and MACD In trading?Hi every one
*Definition of RSI:
This indicator Is momentum base indicator.
The biggest difference with momentum is that there are two line which indicate that: Is the price in the oversold or overbought area or not?
We can easily compare the tops and bottoms of every instrument that we like!
There is not much difference between RSI and Stochastic oscillator only that there is one line in RSI!
Remember every Indicators shows the future of the market!
**Full explanation of MACD:
Moving average convergence divergence (MACD) is a trend-following momentum indicator that shows the relationship between two moving averages of a security’s price. The MACD is calculated by subtracting the 26-period exponential moving average (EMA) from the 12-period EMA.
The result of that calculation is the MACD line. A nine-day EMA of the MACD called the "signal line," is then plotted on top of the MACD line, which can function as a trigger for buy and sell signals. you may buy the security when the MACD crosses above its signal line and sell—or short—the security when the MACD crosses below the signal line. Moving average convergence divergence (MACD) indicators can be interpreted in several ways, but the more common methods are crossovers, divergences, and rapid rises/falls.
Moving average convergence divergence (MACD) is calculated by subtracting the 26-period exponential moving average (EMA) from the 12-period EMA.
MACD triggers technical signals when it crosses above (to buy) or below (to sell) its signal line.
The speed of crossovers is also taken as a signal of a market is overbought or oversold.
MACD helps investors understand whether the bullish or bearish movement in the price is strengthening or weakening.
The MACD has a positive value (shown as the blue line) whenever the 12-period EMA (indicated by the red line) is above the 26-period EMA (the blue line) and a negative value when the 12-period EMA is below the 26-period EMA. The more distant the MACD is above or below its baseline indicates that the distance between the two EMAs is growing.
The MACD has a positive value (shown as the blue line) whenever the 12-period EMA (indicated by the red line) is above the 26-period EMA (the blue line ) and a negative value when the 12-period EMA is below the 26-period EMA. The more distant the MACD is above or below its baseline indicates that the distance between the two EMAs is growing.
MACD is often displayed with a histogram which graphs the distance between the MACD and its signal line. If the MACD is above the signal line, the histogram will be above the MACD’s baseline. If the MACD is below its signal line, the histogram will be below the MACD’s baseline. Traders use the MACD’s histogram to identify when bullish or bearish momentum is high.
***RSI VS MACD:
The relative strength indicator (RSI) aims to signal whether a market is considered to be overbought or oversold in relation to recent price levels. The RSI is an oscillator that calculates average price gains and losses over a given period of time. The default time period is 14 periods with values bounded from 0 to 100. MACD measures the relationship between two EMAs, while the RSI measures price change in relation to recent price highs and lows. These two indicators are often used together to provide analysts a more complete technical picture of a market. These indicators both measure momentum in a market, but, because they measure different factors, they sometimes give contrary indications. For example, the RSI may show a reading above 70 for a sustained period of time, indicating a market is overextended to the buy side in relation to recent prices, while the MACD indicates the market is still increasing in buying momentum. Either indicator may signal an upcoming trend change by showing divergence from price (price continues higher while the indicator turns lower, or the other way around.
The DEFINITION of Divergences!
We hope that you've learn something with this post .
Have a nice day and Good luck.
My profitable divergence trading strategy (INTRO)This is an intro to my divergence strategy with the basic rules. I may share more in the future so make sure to follow to stay up to date...
All of the indicators are listed on the chart except for the "LIXX DIVERGENCE LOADOUT", that is just my simplified version of VMC Market Cipher B. (THEY ARE ALL FREE)
The DEFINITION of Divergences!Hi every one
So in this post we want to talk about a thing that If you've been following us you would've see a lot of it !
we wanna talk about Divergences! and how to use them to our advantage!
there 4 kind of divergences in total which we will describe one by one!
1-regular Bearish Divergence (-RD)
2-regular Bullish Divergence (+RD)
3-Hidden Bearish Divergence(-HD)
4-Hidden Bullish Divergence(+HD)
first let's talk about the effects of divergences and than get into each one. divergences are strong signals that will reassure us of the continuation of the trend or the ending of them! so let's get into each one!
note that the trend is pretty important in finding divergences! for finding regular divergences on a bullish trend we must look at the tops and in a bearish trend we must look at the bottoms. for Hidden divergences though we must look at the bottoms (in a bullish trend ) and tops (in a bearish trend)
so let's get into it!
1.regular bearish divergences (-RD): these divergences accrue when the tops are higher than each other(in a bullish trend),but on RSI or MACD indicators the tops are lower or in the same position next each other (in a bullish trend) in this situation we can be sure that the trend is about to change and start the bearish movement at least for a while!
these are examples which clearly show the effect of (-RD) on the trend of the market.
2-regular bullish Divergence (+RD) : this divergence is accrued when the trend is bearish (bottoms are lower than each other ) but on RSI or MACD indicators the Bottoms are higher or next to each other. in this situation we can come to a conclusion that the trend can't be bearish for ever and the trend must change!
this is an example for (+RD) which you can see It's effect on the market!
3-Hidden bearish Divergence(-HD):The tops are lower than each other ( in a bearish trend) but the tops on MACD or RSI indicator are higher or in the same position next to each other in this situation we can be sure that the trend can still be bearish .
this is an example for(-HD) :
4-Hidden Bullish Divergence(+HD): these divergences accrue when the bottoms of a bullish trend are higher than each other but on the MACD or RSI the bottoms are lower or in the same position next to each other in this situation we can be sure that the bullish trend can still continue!
this is a clear example of (+HD) and It's effectiveness!
We hope that you've learn something with this post .
Have a nice day and Good luck.
The Regular Divergence (2) Stock price is lower low, but indicator is higher low. The price touches the support trend line.
Tips:
This is index, not a stock. But the tips should apply as well.
2013 dec 13, price and stochastic have divergence.
Stochastic is to value price momentum.
The divergence is a regular divergence. Means the price will bouce back. Here is for price lower low, but indicator higher low.
Stochastic works only for a range price move. For strong trend, not working. Here the indicator value is very low, and the stock not in a strong trend swing, means oversold. More probably to bounce back.
The stock runs in a very long range. The price drops almost on the support trend line.
Over all these, a strong buy hint is here.
Education - What are divergences and how do I use them?
What are divergences and how do I use them in trading?
A divergence usually shows the trader that the price is moving in the opposite direction to the indicator (or vice versa).
To find a possible divergence in the price you can use various indicators (MACD, Stochastic, Momentum, etc.)
I will limit myself to the Momentum indicator, because I use it myself in my trading.
What does a divergence say?
As already mentioned, the indicator shows me a contrary movement to the price, related to the momentum indicator this means for example:
The price rises and forms a new high, but the momentum indicator forms a lower high in the indicator itself compared to the previous PRICE HIGH
How do I use a divergence?
A divergence can be used in many ways if you know what to do with the information gained. In my opinion, this also depends on the chosen indicator, at least in terms of the information value I get from the divergence.
If one is able to identify a divergence correctly, one receives a kind of "warning", in my opinion a divergence by itself does not represent an action signal, but it warns me that in the case of the momentum indicator it comes to a trend slowdown although the price continues to rise.
What is to be paid attention to here?
-> As mentioned, a divergence by itself is in my opinion NOT a TREND SIGNAL, but a warning or information around which I can now supplement or adjust my trading.
-> Very important, there are two ways that one "bends" the divergence to right once the setting of the indicator is crucial, since each trader uses other settings, it is important not to change these in search of a divergence so that one is formed.
->Furthermore, it is important to consider the time unit under consideration, a divergence occurring in H1 is much less meaningful than one in D1.
Summary:
Divergences are a possibility to add important information to one's trading at an early stage in order to forecast possible price changes that have not yet occurred.
They do not represent action signals on their own.
Ultimate Divergences Types Cheat SheetHello, traders!
This is a cheat sheet for divergences defining between the price and oscillator. As the oscillator the RSI, Stochastic, MFI, CCI, MACD and other indicators can be used.
Regular Bullish Divergence
The price shows lower lows, oscillator - higher lows. This is the sign of downtrend weakness and potential reverse to the uptrend.
Regular Bearish Divergence
The price shows higher highs, oscillator - lower highs. This is the sign of the potential reverse from the uptrend to the downtrend.
Hidden Bullish Divergence
The price shows highers lows, oscillator - lower highs. This is the uptrend strength sign, it is going to continue.
Hidden Bearish Divergence
The price shows lower highs, oscillator higher highs. This is the downtrend strength sign, it is going to continue.
Try this powerful tool in your analysis and share your results in comments!
DISCLAMER: Information is provided only for educational purposes. Do your own study before taking any actions or decisions.
4 TYPES OF DIVERGENCE There are basically two types of divergence
trend continuation and trend reversal
1. trend reversal there are two types of divergence
a. regular bearish divergence :- price makes higher high and indicator makes lower high
b. regular bullish divergence :- price makes lower low but indicator makes higher low. its time for reversal.
2. in trend continuation there are further two type of divergence :-
a. hidden bearish divergence :-which means when price make lower highs but indicator makes higher high
it is sign of trend continuation .
b. hidden bullish divergence :-which means when price make higher lows but indicator makes lower lows
it is sign of trend continuation.
How to trade <<Divergence>> in the market?Hello, friends! I have prepared a very important and informative post for You. I hope you'll like it♥️
Let's talk about Divergence🧐
The word divergence comes from the Latin "divergere" - divergence, deviation. Divergence is a situation when the movement of the indicator doesn't match the movement of the price.
Usually, divergence happen when, for example, the market has reached some new levels, but the indicator cannot reach its previous values. Or, the opposite situation is possible, when the market dropped below a certain level at which it stopped earlier, while the indicator can't reach its previous value.
This situation indicates, that the latest market movement is not reliable and is not supported by a large number of participants. So, almost always, after such a breakout in the market, either a reversal or a flat, or it can be a short-term stop followed by a continuation of the trend.
There are two main types of divergence:
Bearish. When there is a higher price high with a lower high of the indicator. In this case, a down trend reversal is likely.
Bullish. When the level is a lower price low with a higher low on the indicator. In this case, we forecast a trend reversal upward.
What is the practical significance of divergence?
What is the practical significance of divergence?
In practice, it allows you to exit the market in a situation when, with long-term growth, we see the threat of a reversal. Divergence tells you exactly where this movement should start.
This allows you to enter the market on time and exit on time. This signal is so significant, that even if a trader uses only fundamental analysis and doesn't use indicators, needs to start at least one oscillator to watch the divergence.
Thus, the appearance of a divergence may indicate the end of the current movement. Usually, the appearance of a divergence may indicate the end of the price movement and a possible strong price reversal or correction.
Divergence is an important and strong signal. As with other patterns and signals, the higher timeframe, the more likely it is!
Now let's talk about classes of Divergence
Class A Divergence
The weakest type of divergence. Talking about a slow, gradual reversal.
In the case of a bearish divergence, the indicator shows a lower high at a new high on the chart. For a bullish, on the contrary - we see a new price low with a higher low on the indicator.
❌It's not recommended to open trades on such a signal; it's better to wait for additional confirmation.
Class B Divergence
The price forms a double top, while the indicator shows a lower high - that's true for a bearish divergence. For bullish - we see a double bottom on the chart and the indicator shows a higher low.
Class C Divergence
The weakest species. Usually formed in a volatile market. ❌It's better to avoid such signals.
If the price creates a higher high, and the indicator shows a double top, it's a bearish divergence C. If the chart shows a lower low, when the indicator shows a double bottom, it's a bullish divergence C.
Hidden Divergence
In addition to the types of divergence discussed above👆🏼, there is also a hidden one. It's even more effective than those listed above, although it appears quite rarely. Enter on such a signal only in the direction of the current trend.📌
If you see a lower price high with a higher high of the indicator, it is a bearish hidden divergence. It is true for a bullish to find a higher low on the chart with a lower low on the indicator.
What conclusions can we draw?
🔸The presence of a Divergence often, but not always, means a trend reversal💡
🔸Divergence is a relative signal that depends on the chart time frame, and the the type and indicators.
🔸It will not be possible to determine the ideal entry moment, therefore it is necessary to use also other indicators and patterns.
🔸This strategy works in theory on all instruments, but in practice it is suitable for those that tend to long-term trends without corrections.
If You have any questions - I'm waiting for You in the comments)
Stay in touch with me💋
Always sincere with You🧡
Your Rocket Bomb🚀💣