MetaTrader 5 MT5 Expert Advisors TrailingStop – EA MetaTrader 5

TrailingStop – EA MetaTrader 5

This is a simple Expert Advisor with an implemented trailing stop.

It has only two parameters:

TrailingStop Inputs 

TrailingStop — the distance between the price and the Stop Loss level.

TrailingStep — protection against to frequent modification of position. 

How TrailingStop works — the example of the Buy position: 

Originally the StopLoss of a position is equal to zero, we wait for the following condition to be met

                  if(m_symbol.Bid()-ExtTrailingStop>m_position.PriceOpen())

— i.e. when the Bid minus TrailingStop is greater than the position open price PriceOpen:

TrailingStop sl to priceopen

StopLoss is moved to the PriceOpen level (position open price):

TrailingStop sl to priceopen result.png

now, when the position has StopLoss (i.e. when StopLoss is not equal to zero), wait for the following condition to be met:

                  if(m_symbol.Bid()-ExtTrailingStop-ExtTrailingStep>m_position.StopLoss())

— i.e. when the Bid minus TrailingStop minus TrailingStep is greater than the StopLoss price: So here we need to additionally check TrailingStep — this prevent position modification on every tick:

Alternative:   Multi BuyOrders - script MetaTrader 5

TrailingStop trailing

StopLoss is then moved to Bid minus TrailingStop:

TrailingStop trailing result.png 

Here is why we need a protection in the form of TrailingStep:

TrailingStop non trailing 


📈 ROBOTFX MetaTrader Expert Advisors and Indicators to maximize profits and minimize the risks