como adicionar código indicador no código do consultor especializado ?? - página 4

 

como escrever aberto apenas 1 caminho ??

porque minha ea abre ambas as posições de direção, compra e venda.

Eu apenas edito o código e acrescento o outro; ali,

é correto ??

aqui está o código .

      if ((diClose0<diMA1))&&(ZigZagLow){
         OpenBuy();
         return(0);
      }
      else;

      if ((diClose2>diMA3))&&(ZigZagHigh){
         OpenSell();
         return(0);
      }
 
albert_lim83:

finalmente resolveu o problema da variável,

agora é apenas

( - definição da função inesperada

) - parêntese direita desequilibrada...

é que eu deixei ( e ) no meu código?

Você tem isto . . . .

double zag, zig; b=0; while(a<2) {

. . onde está seu fechamento } ?

 
if (!ExistPositions()){

      if ((diClose0<diMA1))&&(ZigZagLow){
         OpenBuy();
         return(0);
      }
      else;

      if ((diClose2>diMA3))&&(ZigZagHigh){
         OpenSell();
         return(0);
      }
   }
   
   return (0);
}

bool ExistPositions() {
for (int i=100; i<OrdersTotal(); i++) {
if (OrderSelect(i, SELECT_BY_POS, MODE_TRADES)) {
if (OrderSymbol()==Symbol()) {
return(True);
}
} 
} 
return(false);
}
void OpenBuy() { 
   double ldLot, ldStop, ldTake; 
   string lsComm; 
   ldLot = GetSizeLot(); 
   ldStop = GetStopLossBuy(); 
   ldTake = GetTakeProfitBuy(); 
   lsComm = GetCommentForOrder(); 
   OrderSend(Symbol
(),OP_BUY,ldLot,Ask,Slippage,ldStop,ldTake,lsComm,0,0,clOpenBuy); 
 
} 
void OpenSell() { 
   double ldLot, ldStop, ldTake; 
   string lsComm; 
   ldLot = GetSizeLot(); 
   ldStop = GetStopLossSell(); 
   ldTake = GetTakeProfitSell(); 
   lsComm = GetCommentForOrder(); 
   OrderSend(Symbol
(),OP_SELL,ldLot,Bid,Slippage,ldStop,ldTake,lsComm,0,0,clOpenSell); 

} 
string GetCommentForOrder() { return(Name_Expert); } 

double GetSizeLot() { return(Lots); } 
double GetTakeProfitBuy() { return(Ask+lTakeProfit*Point); } 
double GetTakeProfitSell() { return(Bid-sTakeProfit*Point); }
double GetStopLossBuy() { return(Bid-lStopLoss*Point); }
double GetStopLossSell() { return(Ask+sStopLoss*Point); }

o erro é

ExistPosições - expressão em âmbito global não permitida

e } - parênteses desequilibrados.

 

só me pergunto por que o erro sempre muda ??

depois que eu corrigi isto,

então o erro aí.

depois de corrigido ali,

erro aqui.

 
albert_lim83:

o erro é

ExistPosições - expressão em âmbito global não permitida

e } - parênteses desequilibrados.

OK, você tem esta função declarada. . Ajustei o travessão para facilitar minha leitura . .

bool ExistPositions() 
   {
   for (int i=100; i<OrdersTotal(); i++) 
      {
      if (OrderSelect(i, SELECT_BY_POS, MODE_TRADES)) 
         {
         if (OrderSymbol()==Symbol()) 
            {
            return(True);
            }
         } 
      } 
   return(false);
   }

este código . . esta declaração de função . . deve estar fora de qualquer outra função, portanto, deve estar fora do início, init, deinit, etc.

 
albert_lim83:

só me pergunto por que o erro sempre muda ??

depois que eu corrigi isto,

então o erro aí.

depois de corrigido ali,

erro aqui.

Porque um erro mascara outro . . corrige um e outro torna-se visível para o compilador . . por exemplo, você maay haave os números corretos de aparelho mas o pode estar nos lugares errados . . ou você pode ter perdido uma cinta de fechamento e uma cinta aberta . . então os números correspondem, mas estão errados.
 
RaptorUK:

OK, você tem esta função declarada. . . Ajustei o travessão para facilitar minha leitura . .

este código . . esta declaração de função . . deve estar fora de qualquer outra função, portanto, deve estar fora do início, init, deinit, etc.

ainda o mesmo erro . ...


ExistPosições - expressão em âmbito global não permitida

e } - parênteses desequilibrados.

onde devo mudar?

 
albert_lim83:


onde devo mudar?

Eu não sei ... mostrar o código completo.
 
RaptorUK:
Não sei . ... mostrar o código completo.

Concorde !. Sem código completo, não podemos ajudar muito, portanto, não espere mais.

Combinado com o MetaEditor 5.

   if(!ExistPositions())
     {

      if((diClose0<diMA1)) && (ZigZagLow)  // <<== ???
        {
         OpenBuy();
         return(0);
        }
      else;   // <<=== ???

      if((diClose2>diMA3)) && (ZigZagHigh) // <<=== ???
        {
         OpenSell();
         return(0);
        }
     }

   return(0);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
bool ExistPositions() 
  {
   for(int i=100; i<OrdersTotal(); i++) // <<=== strange calculation 
     {
      if(OrderSelect(i,SELECT_BY_POS,MODE_TRADES)) 
        {
         if(OrderSymbol()==Symbol()) 
           {
            return(True);
           }
        }
     }
   return(false);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
void OpenBuy() 
  {
   double ldLot,ldStop,ldTake;
   string lsComm;
   ldLot=GetSizeLot();
   ldStop = GetStopLossBuy();
   ldTake = GetTakeProfitBuy();
   lsComm = GetCommentForOrder();
   OrderSend(Symbol
             (),OP_BUY,ldLot,Ask,Slippage,ldStop,ldTake,lsComm,0,0,clOpenBuy);

  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
void OpenSell() 
  {
   double ldLot,ldStop,ldTake;
   string lsComm;
   ldLot=GetSizeLot();
   ldStop = GetStopLossSell();
   ldTake = GetTakeProfitSell();
   lsComm = GetCommentForOrder();
   OrderSend(Symbol
             (),OP_SELL,ldLot,Bid,Slippage,ldStop,ldTake,lsComm,0,0,clOpenSell);

  }
string GetCommentForOrder() { return(Name_Expert); }

double GetSizeLot() { return(Lots); }
double GetTakeProfitBuy() { return(Ask+lTakeProfit*Point); }
double GetTakeProfitSell() { return(Bid-sTakeProfit*Point); }
double GetStopLossBuy() { return(Bid-lStopLoss*Point); }
double GetStopLossSell() { return(Ask+sStopLoss*Point); }
 

Talvez isto devesse ser escrito assim ????

 if(!ExistPositions())
     {
      if(diClose0 < diMA1 && (ZigZagLow)) // <<== ???
        {
         OpenBuy();
         return(0);
        }
        else // <<=== ???
        {
        if(diClose2 > diMA3 && (ZigZagHigh)) // <<=== ???
          {
          OpenSell();
          return(0);
          }
        }
     }