Madrid

Madrid Trend Squeeze

This study spots the points that are most profitable in the trend with a code color and shape. This also shows trend divergences and possible reversal or reentry points

Keeping the parameters simple, this study only needs one parameter, the length of the base moving average, which by default is set to 34.

There are seven colors used for the study

Green : Uptrend in general
Lime : Spots the current uptrend leg
Aqua : The maximum profitability of the leg in a long trade
The Squeeze happens when Green+Lime+Aqua are aligned (the larger the values the better)

Maroon : Downtrend in general
Red : Spots the current downtrend leg
Fuchsia: The maximum profitability of the leg in a short trade
The Squeeze happens when Maroon+Red+Fuchsia are aligned (the larger the values the better)

Yellow : The trend has come to a pause and it is either a reversal warning or a continuation. These are the entry, re-entry or closing position points.

When either the fuchsia or the aqua colors disappear or shrinks meaningfully it could mean a possible leg exhaustion that will have to be confirmed with the subsequent bars.
When the squeeze color appears without the intermediate color (fuchsia+yellow, fuchsia+maroon, aqua+yellow, aqua+green) it could mean this is just a shake off move, a pump/dump move, a buy the dip or a sell the peak move or a gap.

In the example there are three divergences spotted, the first one between march 2009 and september 2010 when the peaks in the indicator made a lower low, meanwhile the price made a higher high, this is a negative divergence and a trend reversal. On the second example, between april 2013 and July 2013 the indicator made a higher high meanwhile the price made a double bottom, this is a positive divergence and a reversal to the upside.

Script de código abierto

Siguiendo el verdadero espíritu de TradingView, el autor de este script lo ha publicado en código abierto, para que los traders puedan entenderlo y verificarlo. ¡Un hurra por el autor! Puede utilizarlo de forma gratuita, aunque si vuelve a utilizar este código en una publicación, debe cumplir con lo establecido en las Normas internas. Puede añadir este script a sus favoritos y usarlo en un gráfico.

Exención de responsabilidad

La información y las publicaciones que ofrecemos, no implican ni constituyen un asesoramiento financiero, ni de inversión, trading o cualquier otro tipo de consejo o recomendación emitida o respaldada por TradingView. Puede obtener información adicional en las Condiciones de uso.

¿Quiere utilizar este script en un gráfico?
// Madrid : Squeeze Trend : 02/Aug/2015 : 11:41 : 2.0
// This Study determines the range where the trend is more profitable.
// http://madridjourneyonws.blogspot.com/
//

study("Madrid Trend Squeeze", shorttitle="MTrendSqueeze")
len = input(34, title="Length", minval=14)
src = close
ref = 13
sqzLen = 5

ma = ema(src, len)
closema = close - ma
refma = ema(src, ref)-ma
sqzma = ema(src, sqzLen)-ma

hline(0)
plotcandle(0, closema, 0, closema, color=closema>=0?aqua:fuchsia)
plotcandle(0, sqzma, 0, sqzma, color=sqzma>=0?lime:red)
plotcandle(0, refma, 0, refma, color=(refma>=0 and closema<refma) or (refma<0 and closema>refma ) ? yellow : refma>=0 ? green:maroon)