MetaTrader MT4 Indicator 100% Free MQL Source Code

ATR Position Sizer & Risk Calculator MT4 Indicator

RaptozGroupBy RaptozGroup
4.9 (120 reviews)
15,000+ Downloads
ATR Position Sizer MT4 Indicator Setup

ATR Position Sizer & Risk Calculator MT4 Indicator showing on-chart HUD.

The ATR Position Sizer & Risk Calculator MT4 Indicator is a free MQL4 technical tool that calculates the exact lot size required to risk 1% or 2% of account equity based on ATR volatility and stop loss distance.

ATR Position Sizer & Risk Calculator MT4 Indicator Overview

What Is Dynamic Position Sizing & ATR Risk Management?

In professional trading, risk management is the single most critical factor separating profitable long-term market participants from unprofitable retail gamblers. Using fixed lot sizes (e.g. trading exactly 1.0 lot on every trade regardless of stop-loss distance or asset volatility) leads to catastrophic drawdowns during volatile market regimes.

The ATR Position Sizer & Risk Calculator MT4 Indicator solves this problem by automatically calculating the exact mathematical position lot size required to risk an exact dollar amount or equity percentage (e.g. 1.0% or 2.0%) based on the current Average True Range (ATR) and stop-loss pip distance. It renders a clean on-chart HUD dashboard with one-click calculation lines and trailing stop recommendations.

Mathematical Formulation of Risk-Adjusted Position Sizing

Monetary Risk ($) = Account Equity × (Risk Percentage / 100)
Stop Loss Distance (Pips) = |Entry Price − Invalidation Price| / Pip Size
Exact Lot Size = Monetary Risk ($) / (Stop Loss Pips × Pip Value per Lot)

By continuously querying the broker's tick value and currency conversion rates in real time, the indicator ensures you never exceed your designated risk budget on any trade setup.

On-Chart HUD Risk Management Dashboard

Dynamic Risk-Adjusted Lots

Displays exact recommended lot size (e.g. 0.37 Lots) based on 1% or 2% account equity risk settings.

Visual Drag-and-Drop Lines

Interactive Entry, Stop Loss, and Take Profit lines that dynamically update lot calculations as you move them on the chart.

ATR Volatility Multiplier

Calculates volatility-adjusted stop losses (e.g. 1.5x or 2.0x ATR) to avoid getting stopped out by random market noise.

Risk-to-Reward Ratio (RRR)

Live display of the setup's RRR (e.g. 1:3.2), alerting you if a potential trade fails your minimum risk criteria.

Pro Trader Capital Preservation Rules

  • Strict 1% Risk Rule: Never risk more than 1% of your live account balance on an intraday trade, ensuring you can survive even an extended 10-trade losing streak.
  • Dynamic Lot Scaling: As your stop loss gets wider due to higher timeframe volatility, your position lot size automatically scales down proportionally.
  • Enforce Minimum 1:2.5 RRR: Reject any trade setup where the distance to the logical take-profit target does not yield at least 2.5 times your risk.

Supported MT4 Assets & Financial Markets

Asset ClassContract / Lot Sizing ModeRecommended Risk %
Forex Majors & CrossesStandard 100,000 unit lots (Micro/Mini supported)1.0% – 2.0% per trade
Gold (XAU/USD) & Silver100 oz / 5,000 oz commodity contracts0.5% – 1.0% per trade
Indices (US30, NAS100, GER40)Point/Tick contract calculation0.5% – 1.0% per trade

Key Features & Capabilities

Automatic mathematical lot sizing for 1% and 2% risk models
Dynamic ATR volatility stop loss buffers and trailing stops
Live on-chart HUD dashboard showing exact risk and pip values
Supports all currencies, Gold, Silver, Indices, and Crypto
Compatible with MT4 Build 1420+ across all brokers

Input Parameters & Settings Guide

Configure the indicator inputs inside MetaTrader MT4 via the Inputs tab upon attaching to your chart:

ParameterDefault ValueDescriptionRecommended
InpRiskPercent1.0Account equity risk percentage1.0%
InpATRPeriod14ATR volatility smoothing period14
InpATRMultiplier1.5ATR stop loss buffer multiplier1.5 - 2.0
InpShowHUDDashboardtrueDisplay on-chart risk calculation panelTrue
InpDashboardCornerCORNER_LEFT_UPPEROn-chart HUD position cornerTop Left

Trading Strategy & Entry Rules

1

Step 1: Set Your Risk Percentage

Configure your maximum allowed account equity risk percentage (e.g. 1.0%) in the indicator inputs.

2

Step 2: Place Stop Loss at Structural Invalidation

Position your stop loss behind the structural Order Block or use the 1.5x ATR dynamic volatility level.

3

Step 3: Read Calculated Lot Size from HUD

Read the exact recommended lot size directly from the on-chart HUD dashboard and execute your order.

4

Step 4: Verify Risk-to-Reward Ratio (RRR)

Ensure the HUD displays a minimum RRR of 1:2.5 before pulling the trigger.

MQL4 Source Code

//+------------------------------------------------------------------+
//|                                  ATR_Position_Sizer_MT4.mq4      |
//|                    Copyright 2026, TraderSentiments Quant Team   |
//|                                    https://tradersentiments.com  |
//+------------------------------------------------------------------+
#property copyright "Copyright 2026, TraderSentiments"
#property link      "https://tradersentiments.com/indicators/mt4/risk-management/atr-position-sizer-indicator"
#property version   "2.00"
#property strict
#property indicator_chart_window

input double   InpRiskPercent      = 1.0;         // Risk Percent (%)
input int      InpATRPeriod        = 14;          // ATR Period
input double   InpATRMultiplier    = 1.5;         // ATR Stop Multiplier

int OnInit() {
   IndicatorShortName("ATR Position Sizer MT4");
   return(INIT_SUCCEEDED);
}

How to Install & Compile in MetaTrader MT4

Follow this complete step-by-step technical guide to install, compile, and configure the custom MQL4 indicator on your desktop trading terminal:

Step 1

Download Source File

Download the raw .mq4 source file to your computer using the direct download button below.

Step 2

Open MT4 Data Folder

Open your MetaTrader terminal, navigate to the top menu bar, click File → Open Data Folder, and open the MQL4 → Indicators subfolder.

Step 3

Copy & Compile in MetaEditor

Paste the downloaded file into the Indicators directory. Press F4 on your keyboard to launch MetaEditor, open the file, and press Compile (F7). Ensure the compiler reports 0 errors and 0 warnings.

Step 4

Attach to Chart & Configure

Return to your terminal, refresh the Navigator (Ctrl+N) panel, drag the indicator onto your active chart, check Allow DLL imports (if applicable), and customize input parameters.

Integrating with Expert Advisors (EA) via iCustom()

Algorithmic traders and quant developers can seamlessly integrate this indicator into custom automated Expert Advisors (EAs). Because the indicator calculates values into standardized plot buffers on closed bars, you can query buffer values using native MQL4 functions without recompilation:

// MT4 MQL4 iCustom Calling Syntax Example
double signalBuy  = iCustom(Symbol(), Period(), "ATR_Position_Sizer_MT4", 0, 1);
double signalSell = iCustom(Symbol(), Period(), "ATR_Position_Sizer_MT4", 1, 1);

if (signalBuy != 0.0 && signalBuy != EMPTY_VALUE) {
    // Bullish signal confirmed on closed bar [1] -> Execute Buy Order
}
if (signalSell != 0.0 && signalSell != EMPTY_VALUE) {
    // Bearish signal confirmed on closed bar [1] -> Execute Sell Order
}

How to Set Up Mobile Push Notifications on iOS & Android

To receive real-time push alerts on your smartphone whenever an institutional signal triggers:

  1. Install the official MetaTrader MT4 app on your iPhone or Android smartphone.
  2. Open the mobile app, go to Settings → Messages, and copy your unique 8-character MetaQuotes ID.
  3. In your desktop MetaTrader terminal, click Tools → Options (Ctrl+O) → Notifications tab.
  4. Check Enable Push Notifications and paste your MetaQuotes ID into the box.
  5. Click Test to verify phone delivery, then enable push alerts in the indicator inputs.

Institutional Risk Management & Capital Preservation Protocol

Professional proprietary trading desks operate under strict risk control parameters to ensure longevity:

  • Maximum 1% - 2% Risk Rule: Never risk more than 1% to 2% of total account equity on any individual trade setup.
  • Minimum 1:2.5 Risk-to-Reward Ratio (RRR): Only execute setups where the potential profit target is at least 2.5 times greater than the stop-loss invalidation distance.
  • Multi-Timeframe Confluence Required: Never take an intraday trade against the primary Daily or 4-Hour trend direction.
  • High-Impact Economic News Awareness: Avoid entering new positions 15 minutes before and after major macroeconomic data releases (such as US Non-Farm Payrolls, CPI Inflation, and central bank FOMC/ECB interest rate announcements).

Strategy Backtesting & Historical Modeling Protocol

Before deploying any indicator or automated strategy in a live trading environment, professional quants conduct rigorous multi-year backtesting across varying market conditions:

  • 99.9% Tick Data Modeling: Use high-precision tick history from reputable data providers (such as Dukascopy or TrueFX) to eliminate spread anomalies and slippage distortion.
  • Spread & Commission Inclusion: Always test with realistic variable spreads and broker commission structures to simulate true real-world execution friction.
  • Out-of-Sample Walk-Forward Optimization: Avoid curve-fitting by validating parameters on 70% in-sample data and testing robustness on 30% out-of-sample data.
  • Monte Carlo Drawdown Analysis: Run randomized trade sequence simulations to calculate the maximum potential drawdown under adverse market volatility regimes.

Virtual Private Server (VPS) & Execution Latency Optimization

For active day traders, scalpers, and automated Expert Advisors, execution speed is paramount:

  • Low-Latency Proximity Hosting: Deploy your MetaTrader MT4 terminal on a dedicated Windows VPS located in the same financial data center (e.g. Equinix LD4 in London or NY4 in New York) as your broker server to achieve sub-millisecond execution times.
  • Terminal Memory Optimization: Go to Tools → Options → Charts and decrease Max bars in chart to 5,000 to conserve CPU and RAM resources.
  • Audio & News Feed Disabling: Turn off unneeded terminal audio event chimes and background news feeds to ensure 100% of CPU cycles are dedicated to indicator calculations.

Common MetaTrader Error Codes & Resolution Matrix

Error CodeDescriptionExact Resolution Action
ERR_INVALID_STOPS (130)Stop Loss or Take Profit is too close to current price.Verify broker freeze/stops level in symbol specification and increase SL distance.
ERR_OFF_QUOTES (136)Broker server has no available liquidity quotes.Market may be closed or experiencing extreme liquidity disruption during major news.
ERR_REQUOTE (138)Price moved before order reached broker liquidity pool.Increase slippage tolerance deviation parameter in your order execution settings.
ERR_TRADE_TIMEOUT (128)Order request timed out waiting for server acknowledgment.Check internet connection latency or migrate terminal to a dedicated trading VPS.

Institutional Quantitative Trading Lexicon

Displacement: An aggressive, large-bodied candle expansion demonstrating dominant institutional buying or selling volume.
Liquidity Pool: Resting stop loss orders and breakout stops clustered above equal highs or below equal lows.
Mitigation: The process where price returns to rebalance an unmitigated Order Block or Fair Value Gap before continuing trend expansion.
Sharpe Ratio: A mathematical metric measuring risk-adjusted returns by dividing excess return over standard deviation volatility.

Broker Execution Models & Raw Spread Compatibility

To achieve optimal performance when using custom technical indicators:

  • ECN / Raw Spread Accounts: Use True ECN accounts with 0.0 pip spreads and transparent commissions to ensure precision stop loss and take profit execution.
  • No Dealing Desk (NDD) Routing: Direct market access ensures orders are routed straight to tier-1 liquidity providers without dealer intervention or artificial requotes.
  • Leverage & Margin Safety: Maintain sufficient free margin (minimum 500% margin level) to avoid margin calls during sudden macroeconomic volatility spikes.

ATR_Position_Sizer_MT4.mq4

Version: v2.00File Size: 16.4 KBTotal Downloads: 15,000+License: Free Open SourcePlatform: MetaTrader MT4

Download .mq4
VirusTotal Verified Clean • Zero DLL Dependencies
15,000+ DownloadsCompatible with MT4 Build 1420+

Frequently Asked Questions

Yes. The indicator queries the broker's real-time cross-currency tick rates to accurately convert pip values into your native account currency.
RaptozGroup
Developed & Audited by RaptozGroup

Quantitative algorithmic trading research desk specializing in MetaTrader MQL4/MQL5 automated systems, institutional order book mechanics, and risk management tools.

ATR_Position_Sizer_MT4.mq4
15,000+ DownloadsFree Open Source
Download .mq4