Orders Execution
Indicators Used
0
Views
0
Downloads
0
Favorites
Profitability Reports
GBP/USD
Oct 2024 - Jan 2025
8.00 %
Total Trades
7
Won Trades
3
Lost trades
4
Win Rate
0.43 %
Expected payoff
-96.43
Gross Profit
60.00
Gross Loss
-735.00
Total Net Profit
-675.00
-100%
-50%
0%
50%
100%
simple-macd-EA
/*-----------------------------+
| |
| Shared by www.Aptrafx.com |
| |
+------------------------------*/
//+------------------------------------------------------------------+
//| imple-MACD-EA.mq4|
//| investor_me|
//| |
//+------------------------------------------------------------------+
#property copyright "investor_me"
#property link "investor_me@gmail.com"
extern double Lots=1; // number of lots to trade (usually, 1 lot is $100k) (unlimited)
extern double TrailingStop=55; // the amount of the trailing stop needed to maximize profit (unlimited)
extern int MACD_level=500; //(1-12) [low works for GBPUSD], high works for others.
extern int MAGIC=123456;
extern int tp_limit=100;
int limit=1000;
int gap=1;
extern int wait_time_b4_SL=10000;
int trend=0,last_trend=0, pending_time, ticket, total, pace, tp_cnt;
bool sell_flag, buy_flag, find_highest=false, find_lowest=false;
double MACD_Strength=0;
//+------------------------------------------------------------------+
//| expert initialization function |
//+------------------------------------------------------------------+
int init()
{
return(0);
}
//+------------------------------------------------------------------+
//| expert de-initialization function |
//+------------------------------------------------------------------+
int deinit()
{
return(0);
}
//+------------------------------------------------------------------+
//| MACD function derives the value of MACD with default settings |
//+------------------------------------------------------------------+
int best_deal()
{
double MACDSignal1,MACDSignal2;
MACDSignal2=iMA(NULL,PERIOD_M1,MACD_level,0,MODE_EMA,Close[0],0)-iMA(NULL,PERIOD_M1,MACD_level+1,0,MODE_EMA,Close[0],0);
MACDSignal1=iMA(NULL,PERIOD_M1,MACD_level,0,MODE_EMA,Close[gap],gap)-iMA(NULL,PERIOD_M1,MACD_level+1,0,MODE_EMA,Close[gap],gap);
if ((find_highest && Close[0]>OrderOpenPrice()+Point*5) && MACDSignal2<MACDSignal1)
{ find_highest=false; return (1); }
else if ((find_lowest && Close[0]<OrderOpenPrice()-Point*5) && MACDSignal2>MACDSignal1)
{ find_lowest=false; return (1); }
return (0);
}
//+--------------------------------------------------------------------------------+
int MACD_Direction ()
{
double MACDSignal1,MACDSignal2,ind_buffer1[100], Signal1, Signal2;
MACDSignal2=iMA(NULL,PERIOD_M1,100,0,MODE_EMA,Close[0],0)-iMA(NULL,PERIOD_M1,MACD_level,0,MODE_EMA,Close[0],0);
MACDSignal1=iMA(NULL,PERIOD_M1,100,0,MODE_EMA,Close[gap],gap)-iMA(NULL,PERIOD_M1,MACD_level,0,MODE_EMA,Close[gap],gap);
MACD_Strength=MACDSignal2-MACDSignal1; if (MACD_Strength<0) MACD_Strength=MACD_Strength*(-1);
if(MACDSignal1<0) return (-1);
if(MACDSignal1>0) return (1);
else return (0);
}
//+--------------------------------------------------------------------------------+
//| ClosePending function closes the open order (mainly due to stoploss condition) |
//+--------------------------------------------------------------------------------+
void ClosePending()
{
if(OrderType()<=OP_SELL && OrderSymbol()==Symbol())
{
if(OrderType()==OP_BUY)
{
OrderClose(OrderTicket(),OrderLots(),Bid,3,Violet);
pending_time=0;
}
else
{
OrderClose(OrderTicket(),OrderLots(),Ask,3,Violet);
pending_time=0;
}
}
}
//+------------------------------+
//| The main start function |
//+------------------------------+
void do_order(int type)
{
if (type==1)
{
ticket=OrderSend(Symbol(),OP_BUY,Lots,Ask,3,0,0,"PM",MAGIC,0,White); // buy
if(ticket>0)
{
if(OrderSelect(ticket,SELECT_BY_TICKET,MODE_TRADES))
{ Print("BUY order opened : ",OrderOpenPrice()); } // buy order successful
pace=tp_limit; tp_cnt=0; pending_time=0; find_highest=true;
}
else Print("Error opening SELL order : ",GetLastError());
buy_flag=false;
}
else if (type==2)
{
ticket=OrderSend(Symbol(),OP_SELL,Lots,Bid,3,0,0,"PM",MAGIC,0,Red);
if(ticket>0)
{
if(OrderSelect(ticket,SELECT_BY_TICKET,MODE_TRADES))
{ Print("SELL order opened : ",OrderOpenPrice()); }
pace=tp_limit; tp_cnt=0; pending_time=0; find_lowest=true;
}
else Print("Error opening SELL order : ",GetLastError());
sell_flag=false;
}
}
//+------------------------------+
//| The main start function |
//+------------------------------+
int trailing_stop(int type)
{
pace++;
if(TrailingStop>0 && type==1 && pace>tp_limit && tp_cnt<tp_limit) // check for trailing stop value
{
if(Bid-OrderOpenPrice()>Point*TrailingStop)
{
if(OrderStopLoss()<Bid-Point*TrailingStop)
{
OrderModify(OrderTicket(),OrderOpenPrice(),Bid-Point*TrailingStop,OrderTakeProfit(),0,Green);
pace=0; tp_cnt++; pending_time=0; return (1);
}
}
}
else if(TrailingStop>0 && type==2 && pace>tp_limit && tp_cnt<tp_limit)
{
if((OrderOpenPrice()-Ask)>(Point*TrailingStop))
{
if((OrderStopLoss()>(Ask+Point*TrailingStop)) || (OrderStopLoss()==0))
{
OrderModify(OrderTicket(),OrderOpenPrice(),Ask+Point*TrailingStop,OrderTakeProfit(),0,Red);
pace=0; tp_cnt++; pending_time=0; return (1);
}
}
}
if (TrailingStop>0 && tp_cnt>=tp_limit) ClosePending();
}
int start()
{
int count;
if(Bars<100) { Print("bars less than 100"); return(0); }
last_trend=trend;
trend=MACD_Direction();
total=OrdersTotal();
for(count=0;count<total;count++)
{
pending_time++;
OrderSelect(count, SELECT_BY_POS, MODE_TRADES);
if(OrderType()<=OP_SELL && OrderSymbol()==Symbol())
{
if(OrderType()==OP_BUY)
{
trailing_stop(1);
if (trend<0 && last_trend>0 && Close[0]>OrderOpenPrice()+Point*5)
{
ClosePending(); return (0);
}
if (best_deal()==1)
{
ClosePending();
pending_time=0;
find_highest=false;
return (0);
}
if (find_highest && pending_time>wait_time_b4_SL && Close[0]<=OrderOpenPrice()+Point*(pending_time-wait_time_b4_SL))
{
ClosePending();
pending_time=0;
find_highest=false;
return (0);
}
}
else
{
trailing_stop(2);
if (trend>0 && last_trend<0 && Close[0]<OrderOpenPrice()-Point*5)
{
ClosePending(); return (0);
}
if (best_deal()==1)
{
ClosePending();
pending_time=0;
find_lowest=false;
return (0);
}
if (find_lowest && pending_time>wait_time_b4_SL && Close[0]>=OrderOpenPrice()-Point*(pending_time-wait_time_b4_SL))
{
ClosePending();
pending_time=0;
find_lowest=false;
return (0);
}
}
}
return (0);
}
if (trend>0 && last_trend<0 /*&& MACD_Strength>Point*0.001*/)
{ buy_flag=true; sell_flag=false; last_trend=trend; }
else if (trend<0 && last_trend>0 /*&& MACD_Strength>Point*0.001*/)
{ sell_flag=true; buy_flag=false; last_trend=trend; }
if (sell_flag==true || buy_flag==true)
{
if (buy_flag==true) do_order(1);
if (sell_flag==true) do_order(2);
}
}
Comments
Markdown Formatting Guide
# H1
## H2
### H3
**bold text**
*italicized text*
[title](https://www.example.com)

`code`
```
code block
```
> blockquote
- Item 1
- Item 2
1. First item
2. Second item
---