//+------------------------------------------------------------------+
//| PipZilla is generated by K. Barsoumian                           |
//|                                                                  |
//|                                                                  |
//|  In no event will author be liable for any damages whatsoever.   |
//|                      Use at your own risk.                       |
//|                                                                  |
//+------------------- DO NOT REMOVE THIS HEADER --------------------+

#define SIGNAL_NONE 0
#define SIGNAL_BUY   1
#define SIGNAL_SELL  2
#define SIGNAL_CLOSEBUY 3
#define SIGNAL_CLOSESELL 4

#property copyright "K. Barsoumian - PipZilla"

#property indicator_chart_window       //Indicator is drawn in the main window
#property indicator_buffers 2          // Number of buffers
#property indicator_color1 Red  

extern int MagicNumber = 1234567890;
extern bool SignalMail = False;
extern bool EachTickMode = True;
extern double Lots = 1.0;
extern int Slippage = 3;
extern bool UseStopLoss = False;
extern int StopLoss = 30;
extern bool UseTakeProfit = True;
extern int TakeProfit = 15;
extern bool UseTrailingStop = False;
extern int TrailingStop = 30;
extern string Moving_average_settings="-----------------------------------------------------------------";
extern int Ma_Period=1;
extern int Fast_Ma_Period=6;
extern int Slow_Ma_Period=19;
extern string QQEA="------------------------------------------------------------------------------------";
extern double SF=5;
extern double RSIPeriod=14;
extern double DARFACTOR=4.236;
extern double MA_DBUY=0.0001;
extern double MA_DSELL=-0.0001;
extern double QQEA_DBUY=4;
extern double QQEA_DSELL=-4;
extern double ADX=10;
extern double WPRBuyClose=-99;
extern double WPRSellClose=-0.05;
extern double QQEABuyClose=27;
extern double QQEASellClose=75;
extern double SARStep=0.009;
extern double SARMax=0.2;

int BarCount;
int Current;
bool TickCheck = False;
//+------------------------------------------------------------------+
//| expert initialization function                                   |
//+------------------------------------------------------------------+
int init() {
   BarCount = Bars;

   if (EachTickMode) Current = 0; else Current = 1;
   return(0);
}
//+------------------------------------------------------------------+
//| expert deinitialization function                                 |
//+------------------------------------------------------------------+
int deinit() {

   return(0);
}
//+------------------------------------------------------------------+
//| expert start function                                            |
//+------------------------------------------------------------------+
int start() {
   int Order = SIGNAL_NONE;
   int Total, Ticket;
   double StopLossLevel, TakeProfitLevel;



   if (EachTickMode && Bars != BarCount) TickCheck = False;
   Total = OrdersTotal();
   Order = SIGNAL_NONE;
   

   //+------------------------------------------------------------------+
   //| Variable Begin                                                   |
   //+------------------------------------------------------------------+

double Var1 = iMA(NULL, 0, Ma_Period, 0, MODE_SMA, PRICE_CLOSE, Current + 0);
double Var1_1=iMA(NULL, 0, Ma_Period, 0, MODE_SMA, PRICE_CLOSE, Current + 1);
double Var1_2=iMA(NULL, 0, Ma_Period, 0, MODE_SMA, PRICE_CLOSE, Current + 2);
double Var2 = iCustom(NULL,0,"QQEA",SF,RSIPeriod,DARFACTOR, MODE_MAIN,0);
double Var3 = iCustom(NULL,0,"QQEA",SF,RSIPeriod,DARFACTOR, MODE_SIGNAL,0);
double Var4 = iADX(NULL, 0, ADX, PRICE_CLOSE, MODE_PLUSDI,0);
double Var5 = iADX(NULL, 0, ADX, PRICE_CLOSE, MODE_MINUSDI,0);
double Var6 = iFractals(0,0,MODE_UPPER,0);
double Var7 = iFractals(0,0,MODE_LOWER,0);
double Var8 = iSAR(0,0,SARStep,SARMax,0);
double Var9 = iSAR(0,0,SARStep,SARMax,1);
double Var10= iWPR(0,0,75,0);
double Var11= iWPR(0,0,75,1);
double Var12 = iHigh(NULL, PERIOD_H4, Current + 1);
double Var13 = iLow(NULL, PERIOD_H4, Current + 1);


double Buy1 = iMA(NULL, 0, Fast_Ma_Period, 0, MODE_SMA, PRICE_CLOSE, Current + 0);
double Buy1_1=iMA(NULL, 0, Fast_Ma_Period, 0, MODE_SMA, PRICE_CLOSE, Current + 1);
double Buy2 = iMA(NULL, 0, Slow_Ma_Period, 0, MODE_SMA, PRICE_CLOSE, Current + 0);
double Buy3 = iCustom(NULL,0,"QQEA",SF,RSIPeriod,DARFACTOR, MODE_MAIN,1);

Comment("Previous High ", Var12,"   Previous Low ", Var13);
if (Var1<Var13)Order = SIGNAL_NONE;
if (Var1>Var12)Order = SIGNAL_NONE;
SetIndexBuffer(0,Var12);           // Assigning an array to buffer 0
SetIndexStyle (0,DRAW_LINE,STYLE_SOLID, 1);
SetIndexBuffer(0,Var13);           // Assigning an array to buffer 0
SetIndexStyle (0,DRAW_LINE,STYLE_SOLID, 1);
     
   //+------------------------------------------------------------------+
   //| Variable End                                                     |
   //+------------------------------------------------------------------+

   //Check position
   bool IsTrade = False;

   for (int i = 0; i < Total; i ++) {
      OrderSelect(i, SELECT_BY_POS, MODE_TRADES);
      if(OrderType() <= OP_SELL &&  OrderSymbol() == Symbol()) {
         IsTrade = True;
         if(OrderType() == OP_BUY) {
            //Close

            //+------------------------------------------------------------------+
            //| Signal Begin(Exit Buy)                                           |
            //+------------------------------------------------------------------+

             if (Var1<Var13) Order = SIGNAL_CLOSEBUY;

            //+------------------------------------------------------------------+
            //| Signal End(Exit Buy)                                             |
            //+------------------------------------------------------------------+

            if (Order == SIGNAL_CLOSEBUY && ((EachTickMode && !TickCheck) || (!EachTickMode && (Bars != BarCount)))) {
               OrderClose(OrderTicket(), OrderLots(), Bid, Slippage, MediumSeaGreen);
               if (SignalMail) SendMail("[Signal Alert]", "[" + Symbol() + "] " + DoubleToStr(Bid, Digits) + " Close Buy");
               if (!EachTickMode) BarCount = Bars;
               IsTrade = False;
               continue;
            }
            //Trailing stop
            if(UseTrailingStop && TrailingStop > 0) {                 
               if(Bid - OrderOpenPrice() > Point * TrailingStop) {
                  if(OrderStopLoss() < Bid - Point * TrailingStop) {
                     OrderModify(OrderTicket(), OrderOpenPrice(), Bid - Point * TrailingStop, OrderTakeProfit(), 0, MediumSeaGreen);
                     if (!EachTickMode) BarCount = Bars;
                     continue;
                  }
               }
            }
         } else {
            //Close

            //+------------------------------------------------------------------+
            //| Signal Begin(Exit Sell)                                          |
            //+------------------------------------------------------------------+

          if (Var1>Var12) Order = SIGNAL_CLOSESELL;

            //+------------------------------------------------------------------+
            //| Signal End(Exit Sell)                                            |
            //+------------------------------------------------------------------+

            if (Order == SIGNAL_CLOSESELL && ((EachTickMode && !TickCheck) || (!EachTickMode && (Bars != BarCount)))) {
               OrderClose(OrderTicket(), OrderLots(), Ask, Slippage, DarkOrange);
               if (SignalMail) SendMail("[Signal Alert]", "[" + Symbol() + "] " + DoubleToStr(Ask, Digits) + " Close Sell");
               if (!EachTickMode) BarCount = Bars;
               IsTrade = False;
               continue;
            }
            //Trailing stop
            if(UseTrailingStop && TrailingStop > 0) {                 
               if((OrderOpenPrice() - Ask) > (Point * TrailingStop)) {
                  if((OrderStopLoss() > (Ask + Point * TrailingStop)) || (OrderStopLoss() == 0)) {
                     OrderModify(OrderTicket(), OrderOpenPrice(), Ask + Point * TrailingStop, OrderTakeProfit(), 0, DarkOrange);
                     if (!EachTickMode) BarCount = Bars;
                     continue;
                  }
               }
            }
         }
      }
   }

   //+------------------------------------------------------------------+
   //| Signal Begin(Entry)                                              |
   //+------------------------------------------------------------------+

    if (Buy1>Buy1_1 && Var8>Var9 && Buy1>Buy2 && Var2>Buy3 && Var1>Buy2 && Var1>Var1_1 && Var1_1>Var1_2 && Var10>Var11 && Var6<Var8) Order = SIGNAL_BUY;

    if (Buy1<Buy1_1 && Var8<Var9 && Buy1<Buy2 && Var2<Buy3 && Var1<Buy2 && Var1<Var1_1 && Var1_1<Var1_2 && Var10<Var11 && Var7<Var8) Order = SIGNAL_SELL;


   //+------------------------------------------------------------------+
   //| Signal End                                                       |
   //+------------------------------------------------------------------+

   //Buy
   if (Order == SIGNAL_BUY && ((EachTickMode && !TickCheck) || (!EachTickMode && (Bars != BarCount)))) {
      if(!IsTrade) {
         

         if (UseStopLoss) StopLossLevel = Ask - StopLoss * Point; else StopLossLevel = 0.0;
         if (UseTakeProfit) TakeProfitLevel = Ask + TakeProfit * Point; else TakeProfitLevel = 0.0;

         Ticket = OrderSend(Symbol(), OP_BUY, Lots, Ask, Slippage, StopLossLevel, TakeProfitLevel, "Buy(#" + MagicNumber + ")", MagicNumber, 0, LawnGreen);
         if(Ticket > 0) {
            if (OrderSelect(Ticket, SELECT_BY_TICKET, MODE_TRADES)) {
				Print("BUY order opened : ", OrderOpenPrice());
                if (SignalMail) SendMail("[Signal Alert]", "[" + Symbol() + "] " + DoubleToStr(Ask, Digits) + " Open Buy");
			} else {
				Print("Error opening BUY order : ", GetLastError());
			}
         }
         if (EachTickMode) TickCheck = True;
         if (!EachTickMode) BarCount = Bars;
         return(0);
      }
   }

   //Sell
   if (Order == SIGNAL_SELL && ((EachTickMode && !TickCheck) || (!EachTickMode && (Bars != BarCount)))) {
      if(!IsTrade) {
         

         if (UseStopLoss) StopLossLevel = Bid + StopLoss * Point; else StopLossLevel = 0.0;
         if (UseTakeProfit) TakeProfitLevel = Bid - TakeProfit * Point; else TakeProfitLevel = 0.0;

         Ticket = OrderSend(Symbol(), OP_SELL, Lots, Bid, Slippage, StopLossLevel, TakeProfitLevel, "Sell(#" + MagicNumber + ")", MagicNumber, 0, Red);
         if(Ticket > 0) {
            if (OrderSelect(Ticket, SELECT_BY_TICKET, MODE_TRADES)) {
				Print("SELL order opened : ", OrderOpenPrice());
                if (SignalMail) SendMail("[Signal Alert]", "[" + Symbol() + "] " + DoubleToStr(Bid, Digits) + " Open Sell");
			} else {
				Print("Error opening SELL order : ", GetLastError());
			}
         }
         if (EachTickMode) TickCheck = True;
         if (!EachTickMode) BarCount = Bars;
         return(0);
      }
   }

   if (!EachTickMode) BarCount = Bars;

   return(0);
}
//+------------------------------------------------------------------+