oh hi !!! very fast answer
i ve downloaded only ex4. where i can find mq4 file ?
i find this to replace one of the boxes. like the first from 01:00to1:15 and another from 06:50 to 07:00, i like this hours breakout
oh hi !!! very fast answer
Hi, maybe it is not avalaible....try use different break-box indicator...pyloop wrote: Sun Aug 23, 2026 7:55 am oh hi !!! very fast answer
i ve downloaded only ex4. where i can find mq4 file ?
i find this to replace one of the boxes. like the first from 01:00to1:15 and another from 06:50 to 07:00, i like this hours breakout
MT4 version. Test itsrinarayani13 wrote: Wed Aug 26, 2026 9:12 pm I had converted tradingview pine indicator into mmt4 using AI
converted mq4 display is entirly different from tradingview display
Please help me to fix this, mq4 should display similar to tradingview,
Please add arrows on RSI cross
Thank you so much
The indicator it is just the cross of RSI and Moving Average. And thats all. And the setup is the same. the diference maybe is diffrent data provider generate the discrepance from trading view to MT4srinarayani13 wrote: Thu Aug 27, 2026 2:34 am Thank you so much
Tradingview RSI is very smooth, MT4 RSI giving extra signal, please see yellow box
Thank you for explaning in detail, during periods of consolidation or low volatility geting fake signals, I am working on it how to avoid or reduce, in trending market signals are pretty goodcladi53 wrote: Thu Aug 27, 2026 6:59 am The indicator it is just the cross of RSI and Moving Average. And thats all. And the setup is the same. the diference maybe is diffrent data provider generate the discrepance from trading view to MT4
Price Feed Differences
FXCM vs. Your MT4 Broker: At the top of the TradingView chart, you can see that the data comes from the FXCM provider (Gold Spot / U.S. Dollar - 5 - FXCM). In MT4, you are using the quote feed from your specific broker.
Impact on Candlesticks: Discrepancies in the Close, High, or Low prices between two different providers—even by just a few pips or points—alter the exact values calculated by `iRSI()` in MT4 compared to `rsi()` in Pine Script. This results in subtle differences in the slope and amplitude of the lines during periods of consolidation or low volatility.
There is no hidden filtering or smoothing. The mathematical calculation in both scripts is exactly identical: TradingView (Pine Script v4): `sh = rsi(close, 34)` calculates a 34-period RSI based on the closing price; `ln = sma(sh, 68)` calculates a 68-period Simple Moving Average using the RSI values. MetaTrader 4 (MQL4): `iRSI(NULL, 0, 34, PRICE_CLOSE, i)` calculates the exact same 34-period RSI based on the close. The secondary loop sums the last 68 RSI values and divides them by 68 (`sum / 68`), which is the exact mathematical definition of a Simple Moving Average (SMA). Both indicators process raw candlestick data in the same way, without applying any additional smoothing, volatility filters, or offsets. The reason the line appears "flatter" or more "muted" in MT4—rather than standing out as it does in TradingView—is solely due to the fixed vertical scale (0 to 100) and the area fill; however, the crossover points between the RSI and the SMA theoretically occur on the same candle, provided the closing prices on both platforms match.
Here is the modified code with automatic scaling, where the fixed scale of 0 to 100 has been disabled. maybe is better for your view
RSI Cross is giving lots of signal during sidewasy or low volatility, hence I am trying with rsi on ma, result are much better, 34 and 68 seeting will not work here, need to find working settings, this indicator does not have option to change RSI and MA values in inputs option, each time need to change it from mq4 file and compilecladi53 wrote: Thu Aug 27, 2026 6:59 am The indicator it is just the cross of RSI and Moving Average. And thats all. And the setup is the same. the diference maybe is diffrent data provider generate the discrepance from trading view to MT4
Price Feed Differences
FXCM vs. Your MT4 Broker: At the top of the TradingView chart, you can see that the data comes from the FXCM provider (Gold Spot / U.S. Dollar - 5 - FXCM). In MT4, you are using the quote feed from your specific broker.
Impact on Candlesticks: Discrepancies in the Close, High, or Low prices between two different providers—even by just a few pips or points—alter the exact values calculated by `iRSI()` in MT4 compared to `rsi()` in Pine Script. This results in subtle differences in the slope and amplitude of the lines during periods of consolidation or low volatility.
There is no hidden filtering or smoothing. The mathematical calculation in both scripts is exactly identical: TradingView (Pine Script v4): `sh = rsi(close, 34)` calculates a 34-period RSI based on the closing price; `ln = sma(sh, 68)` calculates a 68-period Simple Moving Average using the RSI values. MetaTrader 4 (MQL4): `iRSI(NULL, 0, 34, PRICE_CLOSE, i)` calculates the exact same 34-period RSI based on the close. The secondary loop sums the last 68 RSI values and divides them by 68 (`sum / 68`), which is the exact mathematical definition of a Simple Moving Average (SMA). Both indicators process raw candlestick data in the same way, without applying any additional smoothing, volatility filters, or offsets. The reason the line appears "flatter" or more "muted" in MT4—rather than standing out as it does in TradingView—is solely due to the fixed vertical scale (0 to 100) and the area fill; however, the crossover points between the RSI and the SMA theoretically occur on the same candle, provided the closing prices on both platforms match.
Here is the modified code with automatic scaling, where the fixed scale of 0 to 100 has been disabled. maybe is better for your view
Yes you can change the seeting from setup of indicatorsrinarayani13 wrote: Thu Aug 27, 2026 9:06 pm RSI Cross is giving lots of signal during sidewasy or low volatility, hence I am trying with rsi on ma, result are much better, 34 and 68 seeting will not work here, need to find working settings, this indicator does not have option to change RSI and MA values in inputs option, each time need to change it from mq4 file and compile
It will be easier if able to change RSI and MA value from inputs menu