Last active
March 8, 2025 18:52
-
-
Save feliperazeek/4e599a8d566f47d6a0903aa9d7c07e20 to your computer and use it in GitHub Desktop.
Trading View - Inversao de Polaridade
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//@version=5 | |
indicator("NakInvest - Bullish Candlestick Patterns with Doji", overlay=true) | |
// Function to identify a Hammer pattern | |
isHammer() => | |
lowerShadow = low < close - (high - low) * 0.5 | |
upperShadow = high - close < (high - low) * 0.1 | |
bodySize = math.abs(close - open) | |
bodySize < (high - low) * 0.3 and lowerShadow and upperShadow | |
// Function to identify a Bullish Engulfing pattern considering wicks | |
isBullishEngulfing() => | |
prevOpen = open[1] | |
prevClose = close[1] | |
prevHigh = high[1] | |
prevLow = low[1] | |
currOpen = open | |
currClose = close | |
currHigh = high | |
currLow = low | |
// Previous candle is bearish | |
prevBearish = prevClose < prevOpen | |
// Current candle is bullish | |
currBullish = currClose > currOpen | |
// Current candle engulfs previous candle's range including wicks | |
engulfsWicks = currHigh >= prevHigh and currLow <= prevLow | |
prevBearish and currBullish and engulfsWicks | |
// Function to identify a Bullish Abandoned Baby pattern | |
isBullishAbandonedBaby() => | |
prevGap = low > high[1] | |
nextGap = low[1] > high[2] | |
doji = math.abs(open[1] - close[1]) <= (high[1] - low[1]) * 0.1 | |
prevGap and nextGap and doji | |
// Function to identify a Doji candle | |
isDoji() => | |
bodySize = math.abs(close - open) | |
totalRange = high - low | |
// Doji is identified when the body size is less than or equal to 10% of the total range | |
bodySize <= totalRange * 0.1 | |
// Identify patterns | |
hammer = isHammer() | |
bullishEngulfing = isBullishEngulfing() | |
bullishAbandonedBaby = isBullishAbandonedBaby() | |
doji = isDoji() | |
// Plot signals | |
plotshape(hammer, title="Hammer", location=location.belowbar, color=color.green, style=shape.labelup, text="Hammer") | |
plotshape(bullishEngulfing, title="Bullish Engulfing", location=location.belowbar, color=color.yellow, style=shape.labelup, text="Engulfing") | |
plotshape(bullishAbandonedBaby, title="Bullish Abandoned Baby", location=location.belowbar, color=color.purple, style=shape.labelup, text="Abandoned Baby") | |
plotshape(doji, title="Doji", location=location.belowbar, color=color.olive, style=shape.labelup, text="Doji") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment