HPotter

Morning Star Automating finding script

This is a bullish reversal pattern formed by three candlesticks. The first
is a down candlestick with a long real body, the second is a small real body
which gaps lower to form a star, the third is a up candlestick which closes
above the midpoint of the first candlestick.
Patternt is yellow

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 03/04/2014
//    This is a bullish reversal pattern formed by three candlesticks. The first 
//    is a down candlestick with a long real body, the second is a small real body 
//    which gaps lower to form a star, the third is a up  candlestick which closes 
//    above the midpoint of the first candlestick.
////////////////////////////////////////////////////////////

study(title = "Morning Star", overlay = true)
barcolor(close[2] < open[2] ? max(open[1], close[1]) < close[2] ? open > max(open[1], close[1]) ? close > open ? yellow :na : na : na : na, -1)