Orders Execution
0
Views
0
Downloads
0
Favorites
Profitability Reports
AUD/USD
Oct 2024 - Jan 2025
809.00 %
Total Trades
21
Won Trades
0
Lost trades
0
Win Rate
0.00 %
Expected payoff
248.71
Gross Profit
5959.70
Gross Loss
-736.80
Total Net Profit
5222.90
-100%
-50%
0%
50%
100%
GBP/USD
Oct 2024 - Jan 2025
367.00 %
Total Trades
26
Won Trades
25
Lost trades
1
Win Rate
0.96 %
Expected payoff
371.73
Gross Profit
13287.40
Gross Loss
-3622.50
Total Net Profit
9664.90
-100%
-50%
0%
50%
100%
SimpleGrail1st
//+------------------------------------------------------------------+
//| SimpleGrail.mq4 |
//| Copyright © 2009, LEHayes |
//| BlessingsFromEarth@hotmail.com |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2009, LEHayes"
#property link "BlessingsFromEarth@hotmail.com"
extern int TrailingStop = 200; // represents 20 lots with the extra digit
int StopLoss = 0; // if using 4 digits, set to 20 on Trailing stop loss
double Lots = 0.1; // This is legacy, no switch at this time for progressive lots
extern int magicnumber = 143;
bool PolLots = false; // This closes half the lots at some point, without it, more earnings.
extern int MaxOrders = 1; // you can place multiple orders, but suffer equity risk
extern double Prots= 15; // Percentage of free assets
double Lot; // global lot for calculating free assets
int prevtime;
//+------------------------------------------------------------------+
//| expert initialization function |
//+------------------------------------------------------------------+
int init()
{
//----
//----
return(0);
}
//+------------------------------------------------------------------+
//| expert deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----
//----
return(0);
}
//+------------------------------------------------------------------+
//| expert start function |
//+------------------------------------------------------------------+
int start()
{
//----
Lots = GetLots();
int i=0;
int total = OrdersTotal();
for(i = 0; i <= total; i++)
{
if(TrailingStop>0)
{
OrderSelect(i, SELECT_BY_POS, MODE_TRADES);
if(OrderMagicNumber() == magicnumber)
{
TrailingStairs(OrderTicket(),TrailingStop);
}
}
}
if(AccountFreeMargin() > (AccountBalance()/2))
{
bool BuyOp=false;
bool SellOp=false;
if (High[0]>High[1]&&High[1]>High[2]&&High[2]>High[3]&&Open[0]>Open[1]&&Open[1]>Open[2]&&Open[2]>Open[3]) BuyOp=true;
if (High[0]<High[1]&&High[1]<High[2]&&High[2]<High[3]&&Open[0]<Open[1]&&Open[1]<Open[2]&&Open[2]<Open[3]) SellOp=true;
if(Time[0] == prevtime)
return(0);
prevtime = Time[0];
if(!IsTradeAllowed())
{
prevtime = Time[1];
return(0);
}
if (total < MaxOrders || MaxOrders == 0)
{
if(BuyOp)
{
if (StopLoss!=0)
{
OrderSend(Symbol(),OP_BUY,Lots,Ask,3,Bid-(StopLoss*Point),0,StringConcatenate("SimpleGrail_", Symbol(), "_Buy"),magicnumber,0,Green);
}
else
{
OrderSend(Symbol(),OP_BUY,Lots,Ask,3,0,0,StringConcatenate("SimpleGrail_",Symbol(), "_Buy"),magicnumber,0,Green);
}
}
if(SellOp)
{
if (StopLoss!=0)
{
OrderSend(Symbol(),OP_SELL,Lots,Bid,3,Ask+(StopLoss*Point),0,StringConcatenate("SimpleGrail_", Symbol(), "_Sell"),magicnumber,0,Red);
}
else
{
OrderSend(Symbol(),OP_SELL,Lots,Bid,3,0,0,StringConcatenate("SimpleGrail_", Symbol(), "_Sell"),magicnumber,0,Red);
}
}
}
}
//----
return(0);
}
//+------------------------------------------------------------------+
double GetLots()
{
Lot = NormalizeDouble( (AccountFreeMargin()/MaxOrders)*Prots/100/1000, 1);// Calculate the amount of lots
Print("Lot calculation is: ", Lot);
if (Lot < MarketInfo(Symbol(),MODE_MINLOT))
{
Lot = MarketInfo(Symbol(),MODE_MINLOT); // For testing on const. min. lots
Print("Lot is too small, setting to minlot of: ", Lot);
}
return(Lot);
}
//+------------------------------------------------------------------+
void TrailingStairs(int ticket,int trldistance)
{
bool result;
int error;
int Spred=Ask - Bid;
int spread;
if (OrderType()==OP_BUY)
{
if((Bid-OrderOpenPrice())>(Point*trldistance))
{
if(OrderStopLoss()<Bid-Point*trldistance || (OrderStopLoss()==0))
{
result=OrderModify(ticket,OrderOpenPrice(),Bid-Point*trldistance,OrderTakeProfit(),0,Green);
while(result!=True)
{
error=GetLastError();
Print("LastError closing first try =",error);
if(error==138)
{
Sleep(10000);
RefreshRates();
result=OrderModify(ticket,OrderOpenPrice(),Bid-Point*trldistance,OrderTakeProfit(),0,Green);
}
if(error==0)
{
result=true;
}
}
if (PolLots)
if (NormalizeDouble(OrderLots()/2,2)>MarketInfo(Symbol(), MODE_MINLOT))
{
spread=MarketInfo(Symbol(),MODE_SPREAD);
result = OrderClose(ticket,NormalizeDouble(OrderLots()/2,2),Ask,spread,Green);
while(result!=True)
{
error=GetLastError();
Print("1 LastError closing first try =",error);
if(error==138)
{
Sleep(10000);
RefreshRates();
spread=MarketInfo(Symbol(),MODE_SPREAD);
result = OrderClose(ticket,NormalizeDouble(OrderLots()/2,2),Ask,spread,Green);
}
if(error==0)
{
result=true;
}
}
}
else
{
spread=MarketInfo(Symbol(),MODE_SPREAD);
result = OrderClose(ticket,OrderLots(),Ask,spread,Green);
while(result!=True)
{
error=GetLastError();
Print("2 LastError closing first try =",error);
if(error==138)
{
Sleep(10000);
RefreshRates();
spread=MarketInfo(Symbol(),MODE_SPREAD);
result = OrderClose(ticket,OrderLots(),Ask,spread,Green);
}
if(error==0)
{
result=true;
}
}
}
}
}
}
else
{
if((OrderOpenPrice()-Ask)>(Point*trldistance))
{
if((OrderStopLoss()>(Ask+Point*trldistance)) || (OrderStopLoss()==0))
{
result=OrderModify(OrderTicket(),OrderOpenPrice(),Ask+Point*trldistance,OrderTakeProfit(),0,Red);
while(result!=True)
{
error=GetLastError();
Print("LastError closing first try =",error);
if(error==138)
{
Sleep(10000);
RefreshRates();
result=OrderModify(OrderTicket(),OrderOpenPrice(),Ask+Point*trldistance,OrderTakeProfit(),0,Red);
}
if(error==0)
{
result=true;
}
}
if (PolLots)
if (NormalizeDouble(OrderLots()/2,2)>MarketInfo(Symbol(), MODE_MINLOT))
{
spread=MarketInfo(Symbol(),MODE_SPREAD);
result = OrderClose(ticket,NormalizeDouble(OrderLots()/2,2),Bid,spread,Green);
while(result!=True)
{
error=GetLastError();
Print("3 LastError closing first try =",error);
if(error==138)
{
Sleep(10000);
RefreshRates();
spread=MarketInfo(Symbol(),MODE_SPREAD);
result = OrderClose(ticket,NormalizeDouble(OrderLots()/2,2),Bid,spread,Green);
}
if(error==0)
{
result=true;
}
}
}
else
{
spread=MarketInfo(Symbol(),MODE_SPREAD);
result = OrderClose(ticket,OrderLots(),Bid,spread,Green);
while(result!=true)
{
error=GetLastError();
Print("4 LastError closing first try =",error);
if(error==138)
{
Sleep(10000);
RefreshRates();
spread=MarketInfo(Symbol(),MODE_SPREAD);
result = OrderClose(ticket,NormalizeDouble(OrderLots()/2,2),Bid,spread,Green);
}
if(error==0)
{
result=true;
}
}
}
}
}
}
}
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
---