How to Use Built-in Indicators in MQL for Market Analysis

Gold Signals

Well

Moderator
Staff member
Joined
Dec 16, 2024
Messages
302
Points
28
MQL (MetaQuotes Language) provides a variety of built-in functions to access and use indicators in MetaTrader for market analysis. These indicators are essential tools for traders, offering signals based on market price movements, helping in decision-making processes.

This thread will walk through some of the most commonly used built-in indicators in MQL and how to utilize them for effective market analysis.

Key Built-in Indicators in MQL​

MetaTrader offers numerous indicators that traders use to understand market trends, volatility, momentum, and price fluctuations. In this section, we'll look at how to use some of the most popular built-in indicators in MQL.

1. Moving Average (iMA)​

The Moving Average (MA) is one of the most widely used indicators in trading. It smooths out price data to create a trend-following indicator, making it easier to identify the direction of the market.

Syntax:

Code:
Please, Log in or Register to view codes content!
  • symbol: The trading symbol (e.g., "EURUSD").
  • timeframe: The time frame for the chart (e.g., 0 for the current chart time).
  • period: The number of periods for the moving average.
  • shift: The index of the value you want to retrieve.
Example:
Code:
Please, Log in or Register to view codes content!
This example calculates the 14-period simple moving average for EUR/USD on the 1-hour chart.

2. Relative Strength Index (RSI)​

The Relative Strength Index (RSI) is a momentum oscillator that measures the speed and change of price movements. RSI helps traders identify overbought or oversold conditions in a market.

Syntax:
Code:
Please, Log in or Register to view codes content!
  • symbol: The trading symbol (e.g., "EURUSD").
  • timeframe: The time frame for the chart (e.g., 0 for the current chart time).
  • period: The number of periods for the RSI calculation.
  • shift: The index of the value you want to retrieve.
Example:
Code:
Please, Log in or Register to view codes content!
This example calculates the 14-period RSI for EUR/USD on a daily chart.

3. Moving Average Convergence Divergence (MACD)​

The MACD is a trend-following momentum indicator that shows the relationship between two moving averages of a security’s price. It’s used to identify potential buy or sell signals.

Syntax:
Code:
Please, Log in or Register to view codes content!

symbol: The trading symbol (e.g., "EURUSD").
  • timeframe: The time frame for the chart (e.g., 0 for the current chart time).
  • fast_ema_period: The period for the fast EMA.
  • slow_ema_period: The period for the slow EMA.
  • signal_period: The period for the signal line.
  • applied_price: The price to apply (e.g., PRICE_CLOSE).
  • mode: The MACD value (e.g., MODE_MAIN for the MACD line).
  • shift: The index of the value you want to retrieve.
Example:
Code:
Please, Log in or Register to view codes content!
This example calculates the MACD for EUR/USD using a 12-period fast EMA, 26-period slow EMA, and 9-period signal line on a 1-hour chart.

4. Bollinger Bands (iBands)​

Bollinger Bands are volatility indicators that show the upper and lower bounds of a market's price, helping to identify potential overbought or oversold conditions.

Syntax:
Code:
Please, Log in or Register to view codes content!
  • symbol: The trading symbol (e.g., "EURUSD").
  • timeframe: The time frame for the chart (e.g., 0 for the current chart time).
  • period: The number of periods for the moving average.
  • deviation: The number of standard deviations for the upper and lower bands.
  • shift: The index of the value you want to retrieve.
Example:
Code:
Please, Log in or Register to view codes content!
This example calculates the upper and lower Bollinger Bands for EUR/USD on a 1-hour chart using a 20-period moving average and 2 standard deviations.

5. Stochastic Oscillator (iStochastic)​

The Stochastic Oscillator is a momentum indicator that compares a particular closing price of a security to a range of its prices over a certain period of time. It helps identify overbought and oversold conditions.

Syntax:
Code:
Please, Log in or Register to view codes content!
  • timeframe: The time frame for the chart (e.g., 0 for the current chart time).
  • Kperiod: The period for the %K line.
  • Dperiod: The period for the %D line.
  • slowing: The slowing factor.
  • ma_method: The moving average method.
  • price_field: The price type (e.g., PRICE_CLOSE).
  • mode: The stochastic value (e.g., MODE_MAIN for the %K line).
  • shift: The index of the value you want to retrieve.
Example:
Code:
Please, Log in or Register to view codes content!
This example calculates the Stochastic Oscillator’s %K value for EUR/USD on a 1-hour chart using a 14-period %K, 3-period %D, and a simple moving average.

How to Combine Indicators for Better Market Analysis​

Using a combination of indicators can provide more reliable market signals. For instance, you might use a Moving Average to identify the overall trend and then use the RSI or Stochastic Oscillator to determine overbought or oversold conditions before placing trades.

Here’s a simple example of combining the Moving Average and RSI:
Code:
Please, Log in or Register to view codes content!
This strategy buys when the RSI is below 30 (oversold) and the price is above the moving average, while it sells when the RSI is above 70 (overbought) and the price is below the moving average.

Conclusion​

Using built-in indicators in MQL is a powerful way to perform technical analysis and make informed trading decisions. By combining multiple indicators and customizing them according to your trading strategy, you can improve the accuracy of your trades and automate your analysis process.

Explore these indicators and start integrating them into your Expert Advisors to take your trading to the next level!
 

Signals

Gold Signals
Top