Already warned you that this EA just use Price is over or under Moving Average indicator to Open Order.
So if you still want to try it, please go ahead.
[Condition to open order]
1. Price over Moving Average indicator --> open buy order
//--- Example trading condition: open a buy order if the close price is above the moving average
if (iClose(Symbol(), 0, 1) > iMA(Symbol(), 0, 14, 0, MODE_SMA, PRICE_CLOSE, 1))
{
OpenBuyOrder();
}
2. Price under Moving Average indicator --> open sell order
//--- Example trading condition: open a sell order if the close price is below the moving average
else if (iClose(Symbol(), 0, 1) < iMA(Symbol(), 0, 14, 0, MODE_SMA, PRICE_CLOSE, 1))
{
OpenSellOrder();
}