[Qualsiasi domanda da principiante, per non ingombrare il forum. Professionisti, non passate oltre. Non potrei andare da nessuna parte senza di te - 2. - pagina 365

 
Dimka-novitsek:
È possibile accelerare il processo di test?

sì - premendo il pulsante Stop
 
Allora, ho iniziato a testare 3 EAs, il computer è diventato terribilmente lento, l'Opera non ha risposto per 5 minuti - è normale? Ha risorse teoricamente enormi? Ho due core, memoria, tutto - come questi compiti e 40 in una volta dovrebbero tirare? E se spengo Internet, ma lo gestisce anche lui? Ha già scaricato la cosiddetta cronologia?
 

dov'è l'errore a, in termini di parentesi tutto sembra essere dritto?

//+------------------------------------------------------------------+
//|                                                        Beta2.mq4 |
//|                                                                  |
//|                                                                  |
//+------------------------------------------------------------------+
extern int       StopLoss=100;
extern int       TakeProfit=20;
extern double    Lot=0.01;
extern int       cnt, ticket, total;

//+------------------------------------------------------------------+
//| expert start function                                            |
//+------------------------------------------------------------------+
int start()
{
      double LoCurent=iCustom(NULL, 0, "LO",0,0);
      double LoPrevious=iCustom(NULL, 0, "LO",1,1);
      double FtCurent=iCustom(NULL, 0, "FT",0,0);
      double FtPrevious=iCustom(NULL, 0, "FT",1,1);
//----
   if (total=0)
      {
         if (LoCurent>LoPrevious && FtCurent>FtPrevious)
            {
               ticket=OrderSend(Symbol(),OP_BUY,Lot,Ask,3,Bid-StopLoss*Point,Bid+TakeProfit*Point,"Buy",1111,0,Green);
               if(ticket>0)
                  {
                     if(OrderSelect(ticket,SELECT_BY_TICKET,MODE_TRADES)) Print("BUY order opened : ",OrderOpenPrice());
                  }else Print("Error opening BUY order : ",GetLastError()); 
            return(0); 
            }else 
            if(LoCurent<LoPrevious && FtCurent<FtPrevious)
               {
                  ticket=OrderSend(Symbol(),OP_SELL,Lot,Bid,3,Ask+StopLoss*Point,Ask-TakeProfit*Point,"Sell",2222,0,Red);
                  if(ticket>0)
                     {
                        if(OrderSelect(ticket,SELECT_BY_TICKET,MODE_TRADES)) Print("SELL order opened : ",OrderOpenPrice());
                     }else Print("Error opening SELL order : ",GetLastError()); 
                  return(0); 
               }    
             return(0);
      }
      else 
      if(LoCurent<LoPrevious || FtCurent<FtPrevious || LoCurent<-30 || LoPrevious<-30)
         {
            if(OrderSelect(ticket,SELECT_BY_POS,MODE_TRADES)==false) break;
               {
                  if(OrderSymbol()==Symbol)
                   {
                      if(OrderType()==OP_SELL)
                         {
                         OrderClose(OrderTicket(),OrderLots(),Bid,3,Violet); // close position
                         }
                     return(0);
                   }
               }
         }
         else
            if (LoCurent>LoPrevious || FtCurent>FtPrevious || LoCurent>30 || LoPrevious>30)
               {
                  if(OrderSelect(ticket,SELECT_BY_POS,MODE_TRADES)==false) break;
                     {
                        if(OrderSymbol()==Symbol)
                           {
                              if(OrderType()==OP_SELL)
                                 {
                                    OrderClose(OrderTicket(),OrderLots(),Ask,3,Violet); // close position
                                 }
                               return(0);
                           }
                     }
               }
      }
return(0);
      }
//+------------------------------------------------------------------+
 
Sì, sono confuso da tutti questi "se"...
 
frxmax:

dov'è l'errore a, in termini di parentesi tutto sembra essere dritto?


1) qui

if (total==0)

2) staffe - struttura normalmente - staffa sotto la staffa - e vedrete subito

 
Dimka-novitsek:
Sì, sono confuso da tutti questi "se"...
Finora, il minimo indispensabile...
 
Dimka-novitsek:
Sì, sono confuso da tutti questi "se"...
Finora, il minimo indispensabile...
 
abolk:


1) qui

2) staffe - struttura normalmente - staffa sotto la staffa - e vedrete subito

dov'è il mio totale ==?

cosa intendi - puoi mostrarmelo per favore?

 
frxmax:

dov'è il mio totale ==?

tuo.

if (total=0)

e devi (confronto)

if (total==0)

frxmax:

cosa intendi - puoi mostrarmelo per favore?


prendere il codice di qualsiasi indicatore OEM e vedere come il codice è formattato

 
abolk:

hai

e devo...

OK, risolto, grazie.

scavando tra le parentesi.

Anche se metti tutto in una riga, dà ancora "parentesi sbilanciate".