MLansky

Fakey pattern (Inside Bar False Breakout)

Inside Bar + False-Breakout = Fakey pattern

A Fakey pattern can have a pin bar as the false-break bar or not. Fakey’s are a very important and potent price action trading strategy because they can help us identify stop-hunting and provide us with a very good clue as to what price might do next.
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 ?
//author: Khramov Vladislav

study("Fakey [KV]", overlay=true)

fakey = high[1] <= high[2] and low[1] >= low[2] and high > high[2] and close >= low[1] and close < high[2] ? red : na
fakey1 = high[1] <= high[2] and low[1] >= low[2] and low < low[2] and close > low[2] and close <= high[1] ? lime : na

bgcolor(fakey, transp=70)
bgcolor(fakey1, transp=70)