


Since FMCBR isn’t built-in, here’s a quick Pine Script template:
//@version=5 indicator("FMCBR Indicator", overlay=false) length = input(20, "Swing Length") fibLevel = input(0.618, "Fibonacci Level")// Calculate swing high/low swingHigh = ta.highest(high, length) swingLow = ta.lowest(low, length) fibPrice = swingLow + (swingHigh - swingLow) * fibLevel
// Candle Breakout Ratio br = (close > fibPrice) ? (close - fibPrice) / (high - low) : 0
// MA Filter (50 EMA) maFilter = close > ta.ema(close, 50) ? 1 : 0
fmcbr = br * maFilter plot(fmcbr, "FMCBR", color=color.new(color.purple,0), linewidth=2) hline(0.65, "Strong Long", color=color.new(color.green,0), linestyle=hline.style_dotted) hline(0.35, "Weak Zone", color=color.new(color.gray,0), linestyle=hline.style_dotted)
Unlike RSI (which signals reversal at 70/30), the FMCBR can remain at +90 for hours during a strong trending day. Do not short just because the FMCBR is "high." Wait for the Flow component to turn negative first.
If you’ve been trading for a while, you know the struggle. Moving averages are too slow. Fibonacci levels feel subjective. Candlestick patterns often give false signals.
But what if you could combine all three into one coherent number?
Enter the FMCBR Indicator (Fibonacci Moving Average Candle Breakout Ratio).
While not a standard factory setting on most charts, the FMCBR is a powerful custom hybrid indicator designed to measure the strength of a breakout relative to dynamic Fibonacci support/resistance. It answers one simple question: Is this candle’s move legitimate or just noise? fmcbr indicator
Let’s break down how it works and how you can build it for your own trading.
| FMCBR Value | Zone | Implication | |-------------|------|--------------| | < 20 | Oversold | Price momentum extremely negative; potential reversal up | | 20–40 | Weak Bearish | Bearish momentum but not extreme | | 40–60 | Neutral | No clear directional bias | | 60–80 | Weak Bullish | Bullish momentum but not extreme | | > 80 | Overbought | Price momentum extremely positive; potential reversal down |
The FMCBR is built upon three established pillars of technical analysis:
Visual: Chart with FMCBR indicator drawn.
Host: “Today we’re breaking down the FMCBR Indicator – a tool you won’t find on default MT4 or TradingView without a custom script. Since FMCBR isn’t built-in, here’s a quick Pine
So what is FMCBR? It stands for Fast Moving Channel Breakout Retracement. Here’s the magic – instead of chasing breakouts, it waits for the retracement back into the channel.
Look at this chart of Gold (XAU/USD). Price breaks the upper channel here (point A), but FMCBR doesn’t fire yet. It waits… price pulls back to the baseline – that’s your entry zone. Then we get a green histogram spike – that’s the signal.
Pro tip: Increase the channel multiplier from 1.0 to 1.5 for crypto – less whipsaw.
Warning: Never use FMCBR in a flat, sideways market. Always check ADX first – above 25 only.
Like and subscribe if you want the free FMCBR script link.” Unlike RSI (which signals reversal at 70/30), the