HPotter

Dark Cloud automatic finding script

Hi
Let me introduce my Dark Cloud automatic finding script.
This is a bearish reversal pattern formed by two candlesticks within a uptrend.
Consists of an up candlestick followed by a down candlestick which opens lower
than the prior candlestick and closes below the midrange of the prior candlestick.
It is the reverse of the Piercing Line.

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?
////////////////////////////////////////////////////////////
//  Copyright by HPotter v1.0 11/04/2014
//    This is a bearish reversal pattern formed by two candlesticks  within a uptrend. 
//    Consists of an up candlestick followed by a down candlestick which opens lower 
//    than the prior candlestick and closes below the midrange of the prior candlestick. 
//    It is the reverse of the Piercing Line.
////////////////////////////////////////////////////////////

study(title = "Dark Cloud", overlay = true)
barcolor(open[1] < close[1] ? open > high[1] ? close < close[1] - ((close[1] - open[1]) / 2) ? close > open[1] ? yellow :na :na :na :na )