Trailing Stop with MagicNumber – EA MetaTrader 4

Trailing Stop with MagicNumber - expert for 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

Daily Target, Max Daily Losses with MagicNumber – EA MetaTrader 4

Daily Target, Max Daily Losses with MagicNumber - expert for MetaTrader 4
Trading tools used by traders to make it easier for traders to control and a faster process to close order positions according to the profit target or daily loss limits. Calculation by adding up the total floating and closed orders that are pulled from the history data. If you have any questions or requests, please … Read more