Moving Average MTF – indicator MetaTrader 4

Moving Average MTF - indicator for MetaTrader 4
This is a simple indicator to calculate moving averages based on timeframe that currently viewed. The calculations are generally based on timeframe window and moving average’s period defined. The following chart is on M15 timeframe shows an Exponential Moving Average on close price with period of 16. while this following chart is on the M5 timeframe, shows … Read more

PrevDayLines.mq4 – Draw Previous Day’s High, Low, and Average Price Lines – script MetaTrader 4

PrevDayLines.mq4 - Draw Previous Day's High, Low, and Average Price Lines - script for MetaTrader 4
The PrevDayLines.mq4 script is a tool for MetaTrader 4 that automatically draws three critical price levels from the previous trading day on your chart. These levels include the highest price (Max), the lowest price (Min), and the average price (Avg), providing traders with a clear visual reference for key support and resistance points. The script … Read more

Beginner Programming: Moving Average Crossover with and without Martingale functionality – EA MetaTrader 5

Beginner Programming: Moving Average Crossover with and without Martingale functionality - expert for MetaTrader 5
All of the functions used in the Expert Advisor are found in the ImportantFunctions.mqh include file. There are 2 Expert Advisors, both using the price crossing the moving average as their entry signal, with a simple difference: one uses Martingale when losses occur, and the other does not. I don’t recommend using any of the … Read more

Logarithmic Moving Average – indicator MetaTrader 5

Logarithmic Moving Average - indicator for MetaTrader 5
Quoted from Wikipedia: In mathematics, the logarithmic mean is a function of two non-negative numbers which is equal to their difference divided by the logarithm of their quotient. This calculation is applicable in engineering problems involving heat and mass transfer. Use as is or develop further to serve your purpose Logarithmic Moving Average – indicator … Read more

Harmonic Moving Average – indicator MetaTrader 5

Harmonic Moving Average - indicator for MetaTrader 5
Quoted from InvestopediaWhat Is the Harmonic Mean?The harmonic mean is a numerical average calculated by dividing the number of observations, or entries in the series, by the reciprocal of each number in the series. Thus, the harmonic mean is the reciprocal of the arithmetic mean of the reciprocals. Harmonic Moving Average – indicator MetaTrader 5

Hull Moving Average – indicator MetaTrader 4

Hull Moving Average - indicator for MetaTrader 4
The Hull Moving Average (HMA), developed by Alan Hull, is an extremely fast and smooth Moving Average that almost eliminates lag altogether and manages to improve smoothing at the same time. For that, Alan wrote an equation for the calculation of this Moving Average like this: LWMA[square root(period), (2*LWMA(period/2, price)-LWMA(period, price)] With this clever equation, … Read more

FRASMA: Fractally Modified Simple Moving Average – indicator MetaTrader 4

FRASMA: Fractally Modified Simple Moving Average - indicator for MetaTrader 4
The SMA is accelerated during a trend and slowed down during a sideways market, so as to avoid false signals. It’s using the fractal dimension as computed by iliko [arcsin5@netscape.net] in his indicator called fractal_dimension.mq4, and makes use of it to smooth the SMA. I feel it is best used in combination with it, so … Read more

Average Stocastic indicator for several timeframes – indicator MetaTrader 4

Average Stocastic indicator for several timeframes - indicator for MetaTrader 4
My first stategy was to buy when several stochastics are below 20, and sell when they are above 80. It was unconvenient to change periods every time, so I have developed this indicator, maybe it can be useful. It shows Stochastics for several timeframes in a single chart, also it calculates the average value (blue … Read more