Profit factor:
0.75
Orders Execution
Checks for the total of open ordersIt automatically opens orders when conditions are reachedIt Closes Orders by itself It can change open orders parameters, due to possible stepping strategy
Indicators Used
MACD HistogramMoving average indicator
11 Views
0 Downloads
0 Favorites
testx1
/*-----------------------------+
|			       |
| Shared by www.Aptrafx.com    |
|			       |
+------------------------------*/

//+------------------------------------------------------------------+
//|                                                  MACD Sample.mq4 |
//|                      Copyright © 2004, MetaQuotes Software Corp. |
//|                                       http://www.metaquotes.net/ |
//+------------------------------------------------------------------+

extern double TakeProfit = 120;
extern double Lots = 0.1;
extern double TrailingStop = 30;
extern double MACDOpenLevel=3;
extern double MACDCloseLevel=2;
extern double MATrendPeriod=26;
double Points;
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int init ()
  {
   Points = MarketInfo (Symbol(), MODE_POINT);
//----
   return(0);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int deinit()
  {
   return(0);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int start()
  {
   double MacdCurrent=0, MacdPrevious=0, SignalCurrent=0;
   double SignalPrevious=0, MaCurrent=0, MaPrevious=0;
   int cnt=0, total;

   if(Bars<200)
     {
      Print("bars less than 200");
      return(0);  
     }

   if(TakeProfit<10)
     {
      Print("TakeProfit less than 10");
      return(0);
     }

   if(AccountFreeMargin()<(1000*Lots))
     {
      Print("We do not have money");
      return(0);  
     }


// to simplify the coding and speed up access
// data are put into internal variables
   MacdCurrent=iMACD(NULL,0,12,26,9,PRICE_CLOSE,MODE_MAIN,0);
   MacdPrevious=iMACD(NULL,0,12,26,9,PRICE_CLOSE,MODE_MAIN,1);
   SignalCurrent=iMACD(NULL,0,12,26,9,PRICE_CLOSE,MODE_SIGNAL,0);
   SignalPrevious=iMACD(NULL,0,12,26,9,PRICE_CLOSE,MODE_SIGNAL,1);
   MaCurrent=iMA(NULL,0,MATrendPeriod,MODE_EMA,0,PRICE_CLOSE,0);
   MaPrevious=iMA(NULL,0,MATrendPeriod,MODE_EMA,0,PRICE_CLOSE,1);
// check for opened orders()
   if(OrdersTotal()<1) 
     {

      // If((CurTime-LastTradeTime)<300) { Exit }
      // check for long position (BUY) possibility 
      if(MacdCurrent<0 && MacdCurrent>SignalCurrent && MacdPrevious<SignalPrevious &&
         MathAbs(MacdCurrent)>(MACDOpenLevel*Points) && MaCurrent>MaPrevious)
        {
         OrderSend(Symbol(),OP_BUY,Lots,Ask,3,0,Ask+TakeProfit*Points,
                   "macd sample",16384,0,Red);
         return(0);
        }
      // check for short position (SELL) possibility
      if(MacdCurrent>0 && MacdCurrent<SignalCurrent && MacdPrevious>SignalPrevious &&
         MacdCurrent>(MACDOpenLevel*Points) && MaCurrent<MaPrevious)
        {
         OrderSend(Symbol(),OP_SELL,Lots,Bid,3,0,Bid-TakeProfit*Points,
                   "macd sample",16384,0,Red); 
         return(0); 
        };
      return(0);
     };
   // it is important to enter the market correctly, 
   // but it is more important to exit it correctly...
   total=OrdersTotal();
   for(cnt=0;cnt<total;cnt++)
     {
      OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES);
      if(OrderType()<=OP_SELL && // check for opened position
         OrderSymbol()==Symbol())    
        {
         if(OrderType()==OP_BUY)   // long position is opened
           {
            if(MacdCurrent>0 && MacdCurrent<SignalCurrent && MacdPrevious>SignalPrevious &&
               MacdCurrent>(MACDCloseLevel*Points))
                {
                 OrderClose(OrderTicket(),OrderLots(),Bid,3,Violet); 
                 return(0); // exit
                };
            // check for trailing stop
            if(TrailingStop>0)  
              {                 
               if(Bid-OrderOpenPrice()>Points*TrailingStop)
                 {
                  if(OrderStopLoss()<Bid-Points*TrailingStop)
                    {
                     OrderModify(OrderTicket(),OrderOpenPrice(),Bid-Points*TrailingStop,
                                 OrderTakeProfit(),0,Red);
                     return(0);
                    }
                 }
              }
           }
         else // go to short position
           {
            if(MacdCurrent<0 && MacdCurrent>SignalCurrent &&
               MacdPrevious<SignalPrevious && MathAbs(MacdCurrent)>(MACDCloseLevel*Points))
              {
               OrderClose(OrderTicket(),OrderLots(),Ask,3,Violet); // close position
               return(0); // exit
              }
            // check for trailing stop
            if(TrailingStop>0)  
              {                 
               if((OrderOpenPrice()-Ask)>(Points*TrailingStop))
                 {
                  if(OrderStopLoss()==0.0 || 
                     OrderStopLoss()>(Ask+Points*TrailingStop))
                    {
                     OrderModify(OrderTicket(),OrderOpenPrice(),Ask+Points*TrailingStop,
                                 OrderTakeProfit(),0,Red);
                     return(0);
                    }
                 }
              }
           }
        }
     }
   return(0);
  }
// the end.

Profitability Reports

USD/JPY Jul 2025 - Sep 2025
0.78
Total Trades 32
Won Trades 29
Lost trades 3
Win Rate 90.63 %
Expected payoff -0.88
Gross Profit 98.99
Gross Loss -127.04
Total Net Profit -28.05
-100%
-50%
0%
50%
100%
USD/CHF Jul 2025 - Sep 2025
0.81
Total Trades 19
Won Trades 17
Lost trades 2
Win Rate 89.47 %
Expected payoff -0.93
Gross Profit 73.48
Gross Loss -91.23
Total Net Profit -17.75
-100%
-50%
0%
50%
100%
USD/CAD Jul 2025 - Sep 2025
0.41
Total Trades 24
Won Trades 21
Lost trades 3
Win Rate 87.50 %
Expected payoff -3.86
Gross Profit 65.20
Gross Loss -157.90
Total Net Profit -92.70
-100%
-50%
0%
50%
100%
NZD/USD Jul 2025 - Sep 2025
1.06
Total Trades 16
Won Trades 14
Lost trades 2
Win Rate 87.50 %
Expected payoff 0.19
Gross Profit 57.40
Gross Loss -54.40
Total Net Profit 3.00
-100%
-50%
0%
50%
100%
GBP/USD Jul 2025 - Sep 2025
0.61
Total Trades 28
Won Trades 26
Lost trades 2
Win Rate 92.86 %
Expected payoff -3.04
Gross Profit 135.60
Gross Loss -220.70
Total Net Profit -85.10
-100%
-50%
0%
50%
100%
GBP/CAD Jul 2025 - Sep 2025
0.07
Total Trades 25
Won Trades 14
Lost trades 11
Win Rate 56.00 %
Expected payoff -23.19
Gross Profit 43.62
Gross Loss -623.32
Total Net Profit -579.70
-100%
-50%
0%
50%
100%
GBP/AUD Jul 2025 - Sep 2025
0.50
Total Trades 24
Won Trades 20
Lost trades 4
Win Rate 83.33 %
Expected payoff -2.60
Gross Profit 61.93
Gross Loss -124.43
Total Net Profit -62.50
-100%
-50%
0%
50%
100%
EUR/USD Jul 2025 - Sep 2025
0.00
Total Trades 113
Won Trades 113
Lost trades 0
Win Rate 100.00 %
Expected payoff 10.55
Gross Profit 1192.70
Gross Loss 0.00
Total Net Profit 1192.70
-100%
-50%
0%
50%
100%
AUD/USD Jul 2025 - Sep 2025
2.69
Total Trades 21
Won Trades 19
Lost trades 2
Win Rate 90.48 %
Expected payoff 1.50
Gross Profit 50.00
Gross Loss -18.60
Total Net Profit 31.40
-100%
-50%
0%
50%
100%
USD/JPY Jul 2025 - Sep 2025
0.00
Total Trades 11
Won Trades 11
Lost trades 0
Win Rate 100.00 %
Expected payoff 4.14
Gross Profit 45.56
Gross Loss 0.00
Total Net Profit 45.56
-100%
-50%
0%
50%
100%

Comments