how can i put lot multiplayer in to this ea

 
//+------------------------------------------------------------------+
//|                                                 send_pending.mq4 |
//|                      Copyright © 2007, MetaQuotes Software Corp. |
//|                                       http://www.metaquotes.net/ |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2007, MetaQuotes Software Corp."
#property link      "http://www.metaquotes.net/"
#property show_inputs
extern int    Level = 1; 
extern double Lots = 0.1; 
extern int    TakeProfit=1000;
extern bool   Place_buylimit = false; 




extern bool   Place_selllimit = TRUE; 
extern int    GridSpacing=100;
extern double GridUpperLimit=100;
extern double GridLowerLimit=99;                                                
//+------------------------------------------------------------------+
//| script "send pending order with expiration data"                 |
//+------------------------------------------------------------------+
int start()
  {
   int    ticket,expiration;
   double CurrentLevel=0.00;
   double point;
//----
   point=MarketInfo(Symbol(),MODE_POINT);
   expiration=CurTime()+PERIOD_H1*60;
//----
      CurrentLevel = GridLowerLimit;
      while(CurrentLevel < GridUpperLimit)
   while(true)
     {
      
      if (Place_buylimit)
      if(CurrentLevel >(Ask + (Point * Level)))     //ONLY BUY ABOVE ASK PRICE 
      ticket=OrderSend(Symbol(),OP_BUYLIMIT,Lots,CurrentLevel,0,0,CurrentLevel + (Point*TakeProfit),"BUYLIMIT",0,expiration,Green);
     
     
     
      if (Place_selllimit)
      if(CurrentLevel  > (Bid - (Point * Level)))
      ticket=OrderSend(Symbol(),OP_SELLLIMIT,Lots,CurrentLevel,0,0,CurrentLevel - (Point*TakeProfit),"SELLLIMIT",0,expiration,Red);
      
      CurrentLevel = CurrentLevel + (GridSpacing * Point);
      
      if(ticket<=0) Print("Error = ",GetLastError());
      else { Print("ticket = ",ticket); break; }
      //---- 10 seconds wait
      Sleep(0);
     }
//----
   return(0);
  }
//+------------------------------------------------------------------+  
 
amitkk: how can i put lot multiplayer in to this ea
  1. I assume you mean multiplier.
  2. You define how you want it to grow and code it. Perhaps based on account balance or on history.
  3. You have only three choices: Search for it, learn to code it, or pay someone. We're not going to code it FOR you. We are willing to HELP you when you post your attempt (using SRC) and the nature of your problem.
 
yes lot multiplier like fir st lot 1.2 second lot 3.5 thired 7.3 like and so on by manully puttting for each order.