Understanding Indicator Categories
MetaTrader organizes its built-in indicators into four categories. Understanding these categories helps you select complementary indicators rather than overlapping ones:
- Trend Indicators: Identify the direction and strength of a trend. Examples: Moving Averages, Ichimoku, ADX, Parabolic SAR.
- Oscillators: Measure momentum and identify overbought/oversold conditions. Examples: RSI, Stochastic, CCI, MACD.
- Volume Indicators: Analyze trading volume to confirm price movements. Examples: OBV, Money Flow Index, Volumes.
- Bill Williams Indicators: A set of indicators based on Bill Williams' trading philosophy. Examples: Alligator, Fractals, Awesome Oscillator.
The golden rule: never combine indicators from the same category. Using RSI and Stochastic together (both oscillators) gives redundant signals. Instead, combine a trend indicator with an oscillator for confirmation.
Moving Averages (SMA & EMA)
Moving Averages are the foundation of trend analysis and the most widely used indicators in MetaTrader. They smooth price data to reveal the underlying trend direction.
Simple Moving Average (SMA)
Calculates the arithmetic mean of closing prices over a specified period. A 50-period SMA adds the last 50 closing prices and divides by 50. Simple but effective for identifying long-term trends.
Exponential Moving Average (EMA)
Gives more weight to recent prices, making it more responsive to new information. The 20 EMA reacts faster to price changes than the 20 SMA, making it preferred by shorter-term traders.
Key Moving Average Strategies
- Golden Cross: When the 50 MA crosses above the 200 MA, signaling a bullish trend change.
- Death Cross: When the 50 MA crosses below the 200 MA, signaling a bearish trend change.
- Dynamic Support/Resistance: Price often bounces off the 20 EMA in trending markets. Use it as a trailing reference point.
// How to add a Moving Average in MetaTrader:
// 1. Menu: Insert > Indicators > Trend > Moving Average
// 2. Settings:
// Period: 50 (or 200 for long-term)
// MA Method: Simple or Exponential
// Apply to: Close
// Style: Choose color and line thickness
MACD (Moving Average Convergence Divergence)
The MACD is a versatile indicator that shows the relationship between two EMAs. It consists of three components:
- MACD Line: Difference between the 12-period EMA and 26-period EMA.
- Signal Line: 9-period EMA of the MACD line.
- Histogram: Visual representation of the distance between the MACD line and signal line.
Trading Signals
- Bullish crossover: MACD line crosses above the signal line — consider buying.
- Bearish crossover: MACD line crosses below the signal line — consider selling.
- Divergence: When price makes new highs but MACD makes lower highs, momentum is weakening. This is one of the most powerful MACD signals.
Default settings (12, 26, 9) work well for most timeframes. Some traders use (8, 17, 9) for faster signals or (24, 52, 9) for smoother, more reliable signals on higher timeframes.
RSI (Relative Strength Index)
The RSI measures the speed and magnitude of recent price changes to evaluate overbought or oversold conditions. It oscillates between 0 and 100.
- Above 70: Overbought territory. Price may be due for a pullback.
- Below 30: Oversold territory. Price may be due for a bounce.
- 50 level: Acts as a dynamic support/resistance in trending markets.
RSI Divergence
Like MACD, RSI divergence is a powerful signal. When price makes a new high but RSI makes a lower high (bearish divergence), or price makes a new low but RSI makes a higher low (bullish divergence), a reversal may be imminent.
Standard setting is 14 periods. Shorter periods (7-9) make it more sensitive (more signals, more noise). Longer periods (21-25) make it smoother (fewer signals, more reliable).
Practice with Indicators on a Demo
Apply these indicators on real charts risk-free. XM offers full MT4/MT5 demo accounts with all indicators available.
Open Free Demo →Bollinger Bands
Bollinger Bands measure market volatility and consist of three lines: a middle SMA (usually 20-period) and two bands plotted 2 standard deviations above and below.
Key Concepts
- Band squeeze: When the bands contract, volatility is low and a significant move is likely coming. Prepare for a breakout.
- Band expansion: When bands widen, a strong trend is in progress. Ride the trend until bands start to contract.
- Mean reversion: Price tends to return to the middle band (20 SMA). In range-bound markets, buy near the lower band and sell near the upper band.
- Walking the band: In strong trends, price "walks" along the upper or lower band for extended periods. This is NOT an overbought/oversold signal.
Stochastic Oscillator
The Stochastic compares a closing price to its price range over a given period. It generates two lines: %K (fast) and %D (slow), both oscillating between 0 and 100.
- Above 80: Overbought. Look for %K crossing below %D for a sell signal.
- Below 20: Oversold. Look for %K crossing above %D for a buy signal.
Works best in ranging markets. In strong trends, Stochastic can remain overbought or oversold for extended periods, generating false reversal signals.
Ichimoku Cloud (Ichimoku Kinko Hyo)
The Ichimoku Cloud is a comprehensive indicator that defines support/resistance, trend direction, momentum, and trading signals in one view. It consists of five lines:
- Tenkan-sen (Conversion Line): 9-period midpoint. Similar to a fast MA.
- Kijun-sen (Base Line): 26-period midpoint. Similar to a slow MA.
- Senkou Span A (Leading Span A): Average of Tenkan and Kijun, plotted 26 periods ahead. Forms one edge of the cloud.
- Senkou Span B (Leading Span B): 52-period midpoint, plotted 26 periods ahead. Forms the other edge of the cloud.
- Chikou Span (Lagging Span): Current closing price, plotted 26 periods behind.
Quick interpretation: Price above the cloud = bullish. Price below the cloud = bearish. Price inside the cloud = indecision. A thick cloud provides stronger support/resistance than a thin one.
ATR (Average True Range)
ATR measures market volatility by calculating the average range of price movement over a period (default 14). It does NOT indicate direction — only how much price typically moves.
Practical Uses
- Stop Loss placement: Set your stop loss at 1.5x to 2x ATR from entry. This accounts for normal market noise.
- Position sizing: Use ATR to normalize risk across different instruments. Higher ATR = smaller position size.
- Volatility filter: Avoid trading when ATR is abnormally low (dead market) or abnormally high (chaotic market).
Fibonacci Retracement
Fibonacci retracements are drawing tools (not indicators) that identify potential support/resistance levels based on the Fibonacci sequence. The key levels are 23.6%, 38.2%, 50%, 61.8%, and 78.6%.
To apply in MetaTrader: select the Fibonacci Retracement tool from the toolbar, then draw from the swing low to the swing high (in an uptrend) or from the swing high to the swing low (in a downtrend).
The 61.8% level (the "golden ratio") is the most watched retracement level. Many traders look for price to pull back to this level before resuming the trend, often combining it with other confluence factors like a Moving Average or horizontal support.
Installing Custom Indicators on MetaTrader
Beyond the built-in indicators, MetaTrader supports custom indicators created by the community. Here is how to install them:
// Installing custom indicators:
//
// Step 1: Download the .ex4/.ex5 or .mq4/.mq5 file
// Step 2: Open MetaTrader > File > Open Data Folder
// Step 3: Navigate to:
// MT4: MQL4/Indicators/
// MT5: MQL5/Indicators/
// Step 4: Paste the indicator file into the folder
// Step 5: Restart MetaTrader (or right-click Navigator > Refresh)
// Step 6: The indicator appears under Custom Indicators in Navigator
//
// Sources for custom indicators:
// - MQL5 Market (built into MetaTrader)
// - mql5.com/en/code
// - Forex Factory forums
Building a Multi-Indicator Strategy
Here is an example of a well-constructed multi-indicator strategy that combines complementary tools:
- Trend filter: 200 EMA on D1 chart. Only take buy trades when price is above it; sell trades when below.
- Entry trigger: MACD crossover on H4 chart. Enter when the MACD line crosses the signal line in the direction of the D1 trend.
- Confirmation: RSI between 40-60 at entry (not overbought/oversold). Ensures you are not entering a stretched move.
- Stop Loss: 2x ATR from entry price. Gives the trade room to breathe.
- Take Profit: Next Fibonacci extension level or 3x ATR for a 1.5:1 reward-to-risk ratio.
This strategy uses one trend indicator (EMA), one momentum oscillator (MACD), one filter (RSI), and one volatility tool (ATR) — four different categories working together.
The best indicator setup is the one you understand deeply and trade consistently. A simple system executed with discipline will always outperform a complex system applied inconsistently.
Apply These Indicators on Live Charts
Open a free demo account and test these indicators with real-time market data. No risk, full platform access.
Open Exness Demo →