Baby Shark - BB Fakeout DetectorDetecta Rompimentos rápidos em Bandas de Bollinger.
Os rompimentos das bandas os quais ocorrem com duas barras apenas, tem uma probabilidade bem mais alta de reversão.
Sugestão: Use quando o mercado não estiver em tendência forte.
Indicadores y estrategias
Williams %R with Dual EMAA combination of the William%R indicator, with moving averages. In a year timeframe the results look pretty good
ZACARÍA$ 9/21 EMA Cross + 55 MAThis is a MA Cross with the 9 EMA + 21 EMA, but it also features a Simple MA at the 55. Useful for Forex, but can be applied to any chart
Albin's Stradegy //@version=5
indicator("SMA Crossover Signal", overlay=true)
/**
* This indicator identifies trade signals based on the crossover of two simple moving averages (SMA) and the relative position of the price to a longer-term SMA.
*
* - It calculates the 5-period, 20-period, and 50-period SMAs.
* - A 'BUY SIGNAL' is displayed when the 5-period SMA crosses above the 20-period SMA, but only if the price is above the 50-period SMA (bullish trend confirmation).
* - A 'SELL SIGNAL' is displayed when the 5-period SMA crosses below the 20-period SMA, but only if the price is below the 50-period SMA (bearish trend confirmation).
* - The background color changes dynamically: green when the price is above the 50-period SMA, red when it is below.
*/
ICT Dynamic WatermarkA moving watermark anchored to the current candle's closing price. This indicator was specifically created for Michael J. Huddleston (ICT) to help prevent people using his content without authorization.
kimpahthis is an updated fvg without pre-market detection so the chart stays nice and clean during trades.
MgboIntroduction:
Crafted with TTrades, the Fractal Model empowers traders with a refined approach to Algorithmic Price Delivery. Specifically designed for those aiming to capitalize on expansive moves, this model anticipates momentum shifts, swing formations, orderflow continuations, as well as helping analysts highlight key areas to anticipate price deliveries.
Description:
> The Fractal Model° is rooted in the cyclical nature of price movements, where price alternates between large and small ranges. Expansion occurs when price moves consistently in one direction with momentum. By combining higher Timeframe closures with the confirmation of the change in state of delivery (CISD) on the lower Timeframe, the model reveals moments when expansion is poised to occur.> Thanks to TTrades' extensive research and years of studying these price behaviours, the Fractal Model° is a powerful, adaptive tool that seamlessly adjusts to any asset, market condition, or Timeframe, translating complex price action insights into an intuitive and responsive system.
The TTrades Fractal Model remains stable and non-repainting, offering traders reliable, unchanged levels within the given Time period. This tool is meticulously designed to support analysts focus on price action and dynamically adapt with each new Time period.
Key Features:
Custom History: Control the depth of your historical view by selecting the number of previous setups you’d like to analyze on your chart, from the current setup only (0) to a history of up to 40 setups. This feature allows you to tailor the chart to your specific charting style, whether you prefer to see past setups or the current view only.>Fractal Timeframe Pairings: This indicator enables users to observe and analyze lower Timeframe (LTF) movements within the structure of a higher Timeframe (HTF) candle. By examining LTF price action inside each HTF candle, analysts can gain insight into micro trends, structure shifts, and key entry points that may not be visible on the higher Timeframe alone. This approach provides a layered perspective, allowing analysts to closely monitoring how the LTF movements unfold within the overarching HTF context.
For a more dynamic and hands-off user experience, the Automatic feature autonomously adjusts the higher Timeframe pairing based the current chart Timeframe, ensuring accurate alignment with the Fractal Model, according to TTrades and his studies
Bias Selection: This feature allows analysts complete control over bias and setup detection, allowing one to view bullish or bearish formations exclusively, or opt for a neutral bias to monitor both directions. Easily toggle the bias filter on Fractal Model to align with your higher Timeframe market draw.
Combo Descomplica 1.0Este indicador contém 3 médias móveis e também um indicador para os níveis de Gamma do VIX
Rishabh's Price & Volume Change IndicatorRishabh's Price & Volume Change Indicator
If price is up and volume is down for current and prev close then green
else
yellow
Renko Sincronizado a VelasTeniendo en cuenta los precios máximos y mínimos alcanzados en cada una de las velas, aplicando también a cualquier tipo de gráficos, podemos obtener ladrillos del tamaño que definamos en TICKS, para de esta forma poder visualizar RENKO sobre dichas velas.
Last NR7 Highlight (Day Timeframe Only)This Indicator identifies and highlights the recent instances of NR7 (Narrowest Range 7) candles on your chart. NR7 candles are significant because they represent periods of consolidation, often preceding strong breakouts or trend reversals. The script makes it easy to spot these critical candles with clear visual cues, helping traders make informed decisions.
Grambos Final Countdown - 4 TimeframesA script that shows countdown timers for multiple time frames all in the same place. I edited the original by @SamRecio so that it only shows 4 time frames.
Default time frames are 4H, 1H, 15m, and 5m, and can be changed to any 4 you like.
Perfect Sell Signal//@version=5
indicator("Perfect Sell Signal", overlay=true)
// Define parameters
shortTermEMA = input.int(9, title="Short Term EMA")
longTermEMA = input.int(21, title="Long Term EMA")
rsiPeriod = input.int(14, title="RSI Period")
rsiOverboughtLevel = input.int(70, title="RSI Overbought Level")
rsiOversoldLevel = input.int(30, title="RSI Oversold Level")
// Calculate the EMAs
shortEMA = ta.ema(close, shortTermEMA)
longEMA = ta.ema(close, longTermEMA)
// Calculate the RSI
rsi = ta.rsi(close, rsiPeriod)
// Define conditions for a sell signal
emaCrossover = ta.crossover(shortEMA, longEMA) // Short-term EMA crossing below long-term EMA
rsiOverboughtCondition = rsi > rsiOverboughtLevel // RSI in overbought region
// Sell condition (stronger signal when both EMA crossover and RSI indicate overbought)
sellSignal = emaCrossover and rsiOverboughtCondition
// Plot the signals on the chart
plotshape(sellSignal, location=location.abovebar, color=color.red, style=shape.labeldown, title="Sell Signal", text="SELL")
// Plot the EMAs on the chart for reference
plot(shortEMA, color=color.blue, title="Short-term EMA")
plot(longEMA, color=color.orange, title="Long-term EMA")
EMA 10 y 55 + Perfil de Volumenindicador que se basa en el cruce de dos medias móviles las cuales al combinarse con la acción del precio mediante el volumen nos da como resultado excelentes entradas y una visión del punto de control y una mejor perspectiva de la dirección del precio
9-30wma//@version=5
indicator("Custom Indicator", overlay=true)
// 9 Günlük EMA ve 30 Günlük WMA
ema9 = ta.ema(close, 9)
wma30 = ta.wma(close, 30)
// Kapanışların 9 EMA ve 30 WMA seviyelerinin üzerinde olup olmadığını kontrol et
isCloseAboveEma9 = close > ema9
isCloseAboveWma30 = close > wma30
// Mavi sinyal: 9 EMA'nın altında, fakat 30 WMA'nın üstünde kapanış yapan ilk mum
blueSignalCondition = ta.crossover(close, ema9) and close < ema9 and close > wma30
// Yeşil sinyal: Mavi sinyali veren mumun üst seviyesinin üstünde kapanış yapan ilk mum
greenSignalCondition = close > ta.highest(blueSignalCondition ? high : na, 1) and blueSignalCondition
// Mavi ve yeşil sinyal çizimleri
plotshape(series=blueSignalCondition, color=color.blue, style=shape.labelup, location=location.belowbar, size=size.small, title="Blue Signal")
plotshape(series=greenSignalCondition, color=color.green, style=shape.labelup, location=location.belowbar, size=size.small, title="Green Signal")
Bullish Breakout Confirmation ProtovestBreakout Detection:
A candle closes above the defined breakout level.
The next candle must close above the high of the breakout candle without closing back below the breakout level.
Extended RunShows number of bar closing above SMA5 in serie if serie is more than a set value
(default = 6)
Open Equals High/Low with Persistent LinesIt checks each candle to see if the open price is equal to either the high or the low of that candle, and if so, it colors the candle purple on the chart.