Trendlines and Horizontal lines crossing notification EA – EA MetaTrader 5

Monitoring trend continuation and support line
This EA searches for Horizontal and Trend lines of specified color in MonitoringColor on current chart and notifies you when price crosses them. When it happens, after the notification, it also changes line color to what specified in CrossedColor parameter and stops monitoring for price crosses on it, until the user changes its color again. … Read more

2 MA Crossing – EA MetaTrader 4

2 MA Crossing - expert for MetaTrader 4
We will start creating this EA by defining the input variables. //— input parameters input    int      period_ma_fast = 8;  //Period Fast MA input    int      period_ma_slow = 20; //Period Slow MA input    double   takeProfit  = 20.0;  //Take Profit (pips) input    double   stopLoss    = 20.0;  //Stop Loss (pips) input    double   lotSize     = 0.10;  //Lot Size input    double   minEquity   = 100.0; //Min. Equity ($) input    int Slippage = 3;       //Slippage input    int MagicNumber = … Read more

Alert Crossing Three MAs – indicator MetaTrader 5

Alert Crossing Three MAs
The idea of the indicator The indicator shows signals (‘Arrow’ objects) of the ‘Moving Average’ indicator crossings. The peculiarity of the indicator: if there was an intersection of ‘MAs’ (on bar #0), and then the intersection disappeared, the signal remains on the chart Rice. 1. Alert Crossing Three MAs The indicator can give sound signals … Read more