TF Adaptive Moving Average Indicator

TF Adaptive Moving Average Indicator
Download ALL MT5 indicators (5730)
YouTube Video Thumbnail



Similar MetaTrader Tools

TF Adaptive Moving Average Indicator

Info

The TF Adaptive Moving Average Indicator is a Indicator for MetaTrader 5 that the tf adaptive moving average indicator automatically recalculates the moving average period when the time frame is changed. For example, when a monthly chart is opened, the indicator sets the moving average period to 12 to compare the current price to its average value for a year based on the count of periods or bars in the year.

Usage

This tool is typically used for enhancing chart analysis and decision making.

Platform

This Indicator works exclusively on MetaTrader 5 (both build 600+ and newer versions).

Setup

Place the downloaded file in MQL5/Indicators folder via File ? Open Data Folder in MetaTrader 5.


How to Install and Use TF Adaptive Moving Average Indicator

1. Installation: Place your file in the MQL/Indicators folder via "Open Data Folder" and restart your terminal.

2. Loading: Find the indicator in the Navigator, drag it onto your chart, and configure the input parameters in the popup window.

3. Customization: Press Ctrl+I to open the indicator list, select your tool, and click "Properties" to change colors, levels, or visual styles.

4. Updating: Replace the old file in the Indicators folder with the new version and restart the platform to apply changes.

Frequently Asked Questions

Q: Why is my indicator not showing? A: Verify the file is in the MQL/Indicators folder, or try right-clicking the "Indicators" tree in the Navigator and clicking "Refresh."

Q: Do custom indicators slow down the platform? A: Too many complex indicators can impact performance; remove unused ones via the "Indicator List" (Ctrl+I).

Q: Can I use MT4 indicators on MT5? A: No, MQL4 and MQL5 are distinct languages; ensure the indicator is compiled specifically for your platform version.

What this tool does

The TF Adaptive Moving Average indicator automatically recalculates the moving average period when the time frame is changed.

Typical Use Case

This Indicator excels in automated trading and technical analysis on MetaTrader 5.

Compatible Platform & Setup

This Indicator works on MetaTrader 5. Place the file in the MQL5/Indicators folder and restart the terminal.

Description & Settings

Related: Relative Moving Average (RMA) Indicator for MT5 - another powerful indicator for MetaTrader 5 traders.

The TF Adaptive Moving Average indicator automatically recalculates the moving average period when the time frame is changed. For example, when a monthly chart is opened, the indicator sets the moving average period to 12 to compare the current price to its average value for a year based on the count of periods or bars in the year. If a one-week chart is opened, the simple moving average line is automatically set to a period of 52, which is equal to the number of weekly bars in a year.

Also recommended: multi-timeframe moving average indicator (v03) - similar indicator with strong performance on MetaTrader 5.


When opening a one-day chart, the moving average line is recalculated based on the number of trading days, or displayed candlesticks, for a month with five or six bar daily candlesticks. All periods smaller than one day up to one hour are recalculated relative to weeks, and periods of less than an hour are relative to daily bars displayed on the chart. For instance, the sample simple moving average calculation for a 5-minute chart is as follows: a daily trading period on the charts for currency pairs consists of 1440 minutes. Therefore, 1440 minutes / 5 minutes = 288 moving average period. A CFD session lasts 6 hours, so 6 * 60 = 360 / 5 = 72 moving average period. If the session lasts 8 hours, the calculation would be 8 * 60 = 480 / 5 = 96 moving average period.

With the TF Adaptive Moving Average indicator, the trader does not need to select moving average periods for different time frames. The interpretation of the indicator is straightforward: if the current price of the selected time frame is above the average price of the instrument, it is a signal to buy. If the current price for the selected time frame is below the average price of the instrument, it is a signal to sell.

It has been observed that good market entry points are at the moments when the price first crosses the price moving average line and then re-approaches it and forms a reversal candlestick pattern or a combination towards the main price movement direction in the selected time frame. Alternatively, when it breaks a formed high or low price after the price crosses the adaptive moving average, the stop loss is set to the oppositely directed extremum. The TF Adaptive Moving Average indicator is easy to understand and use, providing very accurate signals.

You may also like: universal moving average indicator for mt5 - excellent alternative for indicator users on MetaTrader 5.

Source Code

#property copyright "robotfx"
#property link "https://robotfx.org"
#property version   "1.00"
#property indicator_chart_window
#property indicator_buffers 1
#property indicator_plots   1
#property indicator_label1  "ima"
#property indicator_type1   draw_line
#property indicator_color1  clraqua
#property indicator_style1  style_solid

.......

Leave your opinion, ask a question, share some knowledge

Limitations & Risk Warning

  • This tool is provided for educational and testing purposes only.
  • Past performance does not guarantee future results.
  • Trading involves substantial risk of loss. Use on a demo account first.
  • Results may vary depending on market conditions, broker, and settings.
  • We recommend thorough backtesting and forward testing before using with real funds.
© ROBOTFX Free educational tools by RobotFX. Use entirely at your own risk; we are not liable for any financial losses incurred.