Version 7 of this scalper keeps the rules simple so signals come often. The scalper inside pro v7 indicator draws an 8-bar and a 21-bar exponential average and marks each cross, as long as a 14-bar RSI is not clearly against it: 48 or higher for buys, 52 or lower for sells.
This build ships as a compiled .ex4 for MT4 and .ex5 for MT5.
| Platforms | MT4 (.ex4) + MT5 (.ex5) |
|---|---|
| Chart window | Main price chart |
| Plots | 4: Inside PRO Fast EMA, Inside PRO Slow EMA, Inside PRO Buy, Inside PRO Sell |
| Alerts | popup, push notification, email, sound |
| Inputs | 12 |
Plots this indicator declares
Two averages and two marks on the chart.
`Inside PRO Fast EMA` runs dodger blue at width 2.
`Inside PRO Slow EMA` runs orange at width 2.
`Inside PRO Buy` prints lime below the cross bar.
`Inside PRO Sell` prints red above it.
Mark distance follows each bar’s own range.
- Inside PRO Fast EMA: line, dodger blue, width 2
- Inside PRO Slow EMA: line, orange, width 2
- Inside PRO Buy: arrow, lime, width 2, arrow code 233
- Inside PRO Sell: arrow, red, width 2, arrow code 234

The maths behind the plots
Averages
`FastEmaPeriod` `8` and `SlowEmaPeriod` `21` exponential averages each start from a simple average of their first bars.
Gate
`RsiPeriod` `14` must read at least `RsiBuyLevel` `48.0` on an upward cross, or at most `RsiSellLevel` `52.0` on a downward one.
Placement
`ArrowGapFactor` `0.6` sets the mark gap as a share of the bar’s range, so big bars get more room.
Putting it to work
Blue over orange shows short-term bias up.
Each lime mark is an upward cross that passed the gate.
Each red mark is a downward cross that passed.
The gate only drops crosses against clear momentum.
No cooldown applies between marks.
Warm-up needs about twenty-two bars.
Alert channels in this build: popup, push notification, email and sound, one message per closed bar.
A gated cross raises one popup per bar through `EnableAlerts`; phone, email and speaker routes stay off until chosen.
Every Scalper Inside PRO v7 Indicator input
Core settings
| Setting | What it does | Default |
|---|---|---|
FastEmaPeriod |
Fast EMA period. Trigger average length, `8`. | 8 |
SlowEmaPeriod |
Slow EMA period. Bias average length, `21`. | 21 |
RsiPeriod |
RSI momentum period. Momentum window, `14`. | 14 |
RsiBuyLevel |
RSI floor for a long signal (permissive). Lowest RSI for a buy, `48.0`. | 48.0 |
RsiSellLevel |
RSI ceiling for a short signal (permissive). Highest RSI for a sell, `52.0`. | 52.0 |
Display settings
| Setting | What it does | Default |
|---|---|---|
ArrowGapFactor |
Arrow offset as fraction of the bar range. Mark gap as a bar-range share, `0.6`. | 0.6 |
Alert settings
| Setting | What it does | Default |
|---|---|---|
EnableAlerts |
Master alert switch, `true`. | on |
EnablePopup |
Popup, `true`. | on |
EnablePushNotify |
Phone route, `false`. | off |
EnableEmail |
(see inputs panel) | off |
EnableSound |
Speaker, `false`. | off |
SoundFile |
(see inputs panel) | alert.wav |

Choosing where it lives
Busy sessions on M5 and M15 suit this pair. The hourly EURUSD screenshot shows a handful of crosses a week. On M1 spread outweighs most moves, and on H4 the crosses track short swings.
The downsides
A near-50 gate lets most crosses through.
Back-to-back crosses appear in quiet hours.
Scalping costs eat small moves quickly.
Popups carry every message at first.
Copy the compiled Scalper Inside PRO v7 Indicator file into your MQL4/Indicators folder, and the MT5 build into MQL5/Indicators, then restart the terminal and drag it onto a chart. The step-by-step guide with screenshots is at how to install MT4 and MT5 indicators.
Background reading on the method behind the Scalper Inside PRO v7 Indicator: Scalping at Investopedia, Exponential smoothing on Wikipedia.
Download the Scalper Inside PRO v7 Indicator for MT4 and MT5
The zip holds the compiled Scalper Inside PRO v7 Indicator build for MT4 and MT5, plus a short README. Compiled files only, no source. Enter your email below and the download link arrives in your inbox.
Download this indicator free
Enter your email and the file is yours. You also get the full MT4 and MT5 library.
FAQ
Why set RsiBuyLevel at 48.0 instead of 50?
The slack of two points lets crosses through when momentum is roughly neutral. Only crosses with RSI clearly against them get dropped, which keeps signals frequent for scalping.
What does ArrowGapFactor 0.6 adapt to?
Each bar’s own high-to-low range. A wide bar pushes its mark further away, a narrow one keeps it close, so marks never overlap the candles.
Is Inside PRO v7 different from other 8 and 21 scalpers?
The core is the same exponential pair. The loose RSI gate at 48 and 52 is what sets this version apart, letting more crosses through than a strict midline filter.
Can an Inside PRO Buy repaint after the close?
No. The cross and the RSI gate use closed bars, and the build never marks the forming bar. A mark stays even if price reverses straight after it.
Are results guaranteed?
No. Trading involves risk. Results are not guaranteed; past performance is not indicative of future results. Use the Scalper Inside PRO v7 Indicator as one input. Always backtest before trading live.
Category: this is part of our Signal and Forecast collection. Browse more Signal and Forecast for MetaTrader, or explore every MT4 indicator and MT5 indicator on the site.
External references
- The core method is documented in Leading stock on Wikipedia.
- Additional market context is at Distance To Highs at StockCharts ChartSchool.
