W-M-P-G(sell-4%)





//+------------------------------------------------------------------+
//|                                       When my people go(buy).mq4 |
//|                                 Copyright © 2007, Yavnikov Maxim |
//|                                                       m-gm@bk.ru |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2007, Yavnikov Maxim"
#property link      "m-gm@bk.ru"

extern int     Lots=1;
extern int     Timer=600; //inteval between the modifications
extern int     PerTS=10;  //period ATR for calculation TS/SL
extern double	Kts=7.5;   //ATR for calculating the level TS/SL	
extern int     risk=4;   //% risk from available capital
extern int     MiniForex=1;
extern int     Slippage=5;

datetime LastTradeTime=0;
//+------------------------------------------------------------------+
//| expert initialization function                                   |
//+------------------------------------------------------------------+
int init()
  {
//----
   
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| expert deinitialization function                                 |
//+------------------------------------------------------------------+
int deinit()
  {
//----
   
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| expert start function                                            |
//+------------------------------------------------------------------+
int start()
  {
  int PrBuy=1,i,DolPunkt;
  double HD,LD,lotsi,StopLos;
//----

if(OrdersTotal()>0) OrderSelect(0,SELECT_BY_POS,MODE_TRADES);
if(OrdersTotal()>0 && OrderType()==OP_BUY)  PrBuy=1;
if(OrdersTotal()>0 && OrderType()==OP_SELL) PrBuy=0;

HD=0;	LD=0; 
 for(i=1;i<=PerTS;i++) //StopLoss & TralingStop
 {
   HD+=High[i-1];
	LD+=Low[i-1];
 }
 
StopLos=Kts*MathSqrt((HD-LD)/PerTS/Point)*Point;

if(Symbol()=="EURUSD") DolPunkt = 10;
else if(Symbol()=="GBPUSD") DolPunkt = 7;
     else return(0);

if(CurTime()>LastTradeTime+10)
{
  if(OrdersTotal()<1)
  {   
 
	if(risk!=0) lotsi=NormalizeDouble(AccountBalance()*risk/100/DolPunkt/StopLos*Point,1);
 	else lotsi=Lots;
           
 	if(lotsi > 10) lotsi=MathFloor(lotsi);
 	if(lotsi < 0.1 && MiniForex!=0) lotsi=0.1;
 	if(lotsi < 1 && MiniForex==0) lotsi=1;
 	Comment("lotsi - ",lotsi,"\n","\n","lotsi - ",lotsi,"\n","\n","Buy - ",PrBuy);
   
  	if(PrBuy==0)
	 { //SetOrder(OP_BUY,lotsi,bid,Slippage,bid-StopLos,0,Lime);
      OrderSend(Symbol(),OP_BUY,lotsi,Bid,Slippage,Bid-StopLos,0,"Ïîêóïàåì",16384,0,Lime);
      LastTradeTime=CurTime();
		 					
 	 }
 	 if(PrBuy==1)
	 { //SetOrder(OP_SELL,lotsi,ask,Slippage,ask+StopLos,0,Blue);
      OrderSend(Symbol(),OP_SELL,lotsi,Ask,Slippage,Ask+StopLos,0,"Ïðîäàåì",16384,0,Blue);      
      LastTradeTime=CurTime();
      return(0);		
 	 }
  }	 
}

 	
if(OrdersTotal()<1 || (CurTime()-LastTradeTime)<Timer) return(0);
   OrderSelect(0,SELECT_BY_POS,MODE_TRADES);   
   if(OrderType()==OP_BUY && OrderSymbol()==Symbol())
     {  		
         if(OrderStopLoss()<Bid-StopLos-10*Point)
           {
               // ModifyOrder(Ord(1,VAL_TICKET),Ord(1,VAL_OPENPRICE),Bid-STOPLOS,0,LightGreen);
               OrderModify(OrderTicket(),OrderOpenPrice(),Bid-StopLos,0,LightGreen);

               return(0);  
           }
     }
   
   if(OrderType()==OP_SELL && OrderSymbol()==Symbol())
  	{      
        if(OrderStopLoss()>Ask+StopLos+10*Point || OrderStopLoss()==0)
        {
           // ModifyOrder(Ord(1,VAL_TICKET),Ord(1,VAL_OPENPRICE),Ask+STOPLOS,0,Yellow);
           OrderModify(OrderTicket(),OrderOpenPrice(),Ask+StopLos,0,Yellow);
           return(0);             
        }
  	}


   
//----
   return(0);
  }
//+------------------------------------------------------------------+



Sample





Analysis



Market Information Used:

Series array that contains the highest prices of each bar
Series array that contains the lowest prices of each bar


Indicator Curves created:


Indicators Used:



Custom Indicators Used:

Order Management characteristics:

Checks for the total of open orders
It automatically opens orders when conditions are reached
It can change open orders parameters, due to possible stepping strategy

Other Features:

BackTest : EURUSD on H1

From 2009-08-01 to 2009-10-01 Profit Factor:0.00 Total Net Profit:0.00

BackTest : EURUSD on H1

From 2009-12-01 to 2010-01-17 Profit Factor:0.00 Total Net Profit:0.00

BackTest : EURUSD on H1

From 2010-04-01 to 2010-04-30 Profit Factor:0.00 Total Net Profit:0.00

BackTest : EURUSD on H1

From 2010-05-01 to 2010-05-31 Profit Factor:0.00 Total Net Profit:0.00

BackTest : EURUSD on H1

From 2010-06-01 to 2010-06-30 Profit Factor:0.00 Total Net Profit:0.00

BackTest : GBPUSD on H1

From 2010-01-01 to 2010-02-27 Profit Factor:0.00 Total Net Profit:0.00

BackTest : USDCAD on H1

From 2009-12-01 to 2010-01-01 Profit Factor:0.00 Total Net Profit:0.00

Request Backtest for W-M-P-G(sell-4%)


From : (yyyy/mm/dd) To: (yyyy/mm/dd)

Pair: Period: