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 open-source

Dans le véritable esprit de TradingView, l'auteur de ce script l'a publié en open-source, afin que les traders puissent le comprendre et le vérifier. Bravo à l'auteur! Vous pouvez l'utiliser gratuitement, mais la réutilisation de ce code dans une publication est régie par le règlement. Vous pouvez le mettre en favori pour l'utiliser sur un graphique.

Clause de non-responsabilité

Les informations et les publications ne sont pas destinées à être, et ne constituent pas, des conseils ou des recommandations en matière de finance, d'investissement, de trading ou d'autres types de conseils fournis ou approuvés par TradingView. Pour en savoir plus, consultez les Conditions d'utilisation.

Vous voulez utiliser ce script sur un graphique ?
////////////////////////////////////////////////////////////
//  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)