Trailing Stop with MagicNumber – EA MetaTrader 4
Trailing stop really supports our trading by shifting the stop loss to the profit area so that we can always automatically secure our trades. We will start the code by specifying the input trailing stop parameters input bool isTrailingStop = true; //Trailing Stop input int trailingStart = 15; //Trailing Start (pips) input int trailingStep = 5; //Trailing Step (pips) input int MagicNumber = 0; //Magic Number … Read more