Toute question de débutant, afin de ne pas encombrer le forum. Professionnels, ne passez pas à côté. Nulle part sans toi - 6. - page 539

 
tatianati:

Merci ! Cela a fonctionné, j'étais heureux comme un enfant, mais le conseiller a cessé d'afficher "nouveau". Pouvez-vous me dire où j'ai fait fausse route ?

Huh, j'ai trouvé l'erreur, pas là où je cherchais à l'origine. Je ne peux pas faire face à la prochaine tâche moi-même.

Veuillez m'indiquer comment définir la plage de déviation - distance du prix par rapport à la MA.

extern string s10                = ">>>>>>>>>>>>>>>>>>>>>>>>>>>>";
extern string s11                = ">>> Вход против МА";
extern int    iMA_Period         = 365;
extern int    iMA_OpenDistance   = 60;     // как задать диапазон? например 60-85 за его пределами не открывать ордеров

Voici la partie entrée

int GetSignal()
{
  int Signal = 0;

  double iMA_Signal = iMA(Symbol(), 0, iMA_Period, 0, MODE_SMMA, PRICE_CLOSE, 0);
  
  int Ma_Bid_Diff = MathAbs(iMA_Signal - Bid)/vPoint;
  
  if(Ma_Bid_Diff > iMA_OpenDistance && Bid > iMA_Signal) Signal = -1;
  if(Ma_Bid_Diff > iMA_OpenDistance && Bid < iMA_Signal) Signal = 1;
  
  return(Signal);
}
 
tatianati:

Huh, j'ai trouvé l'erreur, pas là où je cherchais à l'origine. Je ne peux pas m'occuper seul de la prochaine tâche.

Pouvez-vous me dire comment définir la plage de déviation - distance du prix par rapport à la MA.

Voici la partie entrée


extern int    Min_iMA_OpenDistance   = 60;
extern int    Max_iMA_OpenDistance   = 85;

Et par conséquent, la condition

if(Ma_Bid_Diff > Min_iMA_OpenDistance && Ma_Bid_Diff < Max_iMA_OpenDistance && Bid > iMA_Signal)
 

Nous devons changer les données brutes dans le conseiller correctement à (1 achat, -1 vente)

//+------------------------------------------------------------------+

//| SimpleBars_rob.mq4 |
//| Copyright © 2010, ENSED Team |
//| http://www.ensed.org |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2010, ENSED Team"
#lien de propriété "http://www.ensed.org"

extern int SL = 50 ; // valeur du stop loss (en pips)
TP = 150 ; // Valeur du Take Profit (en points)
extern double Lots = 0.1 ; // lot de travail (micro lots - 0.01, mini lots - 0.1, lots normaux - 1.0)
extern string Order_Comment = "robot" ; // commentaire qui sera utilisé pour passer des commandes
extern int Slipage = 5 ; // niveau de glissement maximal autorisé (en points)
extern int int Magic_Number = 777 ; // nombre magique de commandes pour le robot (pour distinguer les transactions "amicales")
extern bool Play_Sound = false ; // lecture du son à l'ouverture : true - autorisé, false - interdit

//--------------------------------------------------------------------------------------------------------------------+
//+ configuration des délais et des paramètres de l'indicateur SimpleBars.
extern int period = 6 ;
extern bool useClose = true ;
extern int width = 3 ;
//+ ajustement des délais et des paramètres de l'indicateur SimpleBars | |.
//--------------------------------------------------------------------------------------------------------------------+

//+-------------------------------------------------------------------------------------------------------------------+
//+ trailing stop |
extern bool UseTrailing = true ; // activation/désactivation du trailing stop
extern int TrailingStop = 50 ; // taille fixe du trailing stop (en pips)
extern int TrailingStep = 1 ; // pas de trailing stop (en points)
//+ trailing stop
//+-------------------------------------------------------------------------------------------------------------------+

//+-------------------------------------------------------------------------------------------------------------------+
//| La fonction est exécutée à l'initialisation du programme.
void init() {
if(GlobalVariableCheck("this_bar "+Symbol()+Period()))
GlobalVariableDel("this_bar "+Symbol()+Period()) ;
retour ;
}
//| fonction, qui est exécutée pendant l'initialisation du programme.
//+-------------------------------------------------------------------------------------------------------------------+

//+-------------------------------------------------------------------------------------------------------------------+
//| La fonction est exécutée à la désinitialisation du programme.
void deinit() {
if(GlobalVariableCheck("this_bar "+Symbol()+Period()))
GlobalVariableDel("this_bar "+Symbol()+Period()) ;
retour ;
}
//| fonction, qui est exécutée lors de la désinitialisation du programme.
//+-------------------------------------------------------------------------------------------------------------------+

//+-------------------------------------------------------------------------------------------------------------------+
//| fonction de recherche d'un signal de négociation |
int fsignals() {
double signal = iCustom(NULL, 0, "SimpleBars", period, 0, 1, 4, 0) ;
return(0) ; // signal d'ouverture d'un Achat
return(1) ; //ouverture du signal Sell
return(-1) ; // pas de signal
} //fin int fsignals()
//| fonction de recherche d'un signal de négociation
//+-------------------------------------------------------------------------------------------------------------------+

//+-------------------------------------------------------------------------------------------------------------------+
//| fonction de suivi du travail du robot sur la barre donnée
bool this_bar() {
si(
(!GlobalVariableCheck("this_bar "+Symbol()+Period()))
|| (GlobalVariableGet("this_bar "+Symbol()+Period()!=Time[0])
) {
GlobalVariableSet("this_bar "+Symbol()+Period(),Time[0]) ;
retour (faux) ;
} else {
retour (vrai) ;
} //finir si (. (!GlobalVariableCheck("this_bar "+Symbol()+Period()))
} //fin bool this_bar()
//| fonction de suivi du fait que le robot travaille sur la barre donnée
//+-------------------------------------------------------------------------------------------------------------------+

//+-------------------------------------------------------------------------------------------------------------------+
//| fonction de recherche des commandes de ce type |
bool find_orders(int magic=-1, int type=-1, string symb="NULL") {
/* renvoie vrai si au moins un ordre du type donné avec le numéro magique donné est trouvé par le symbole donné */.
for (int i=OrdersTotal()-1 ; i>=0 ; i--) {
if(!OrderSelect(i,SELECT_BY_POS,MODE_TRADES)) break ;
si(((OrderType()==type) || (type==-1))
&& ((OrderMagicNumber()==magic) || (magic==-1))
&& ((OrderSymbol()==Symbol() || (symb=="NONE"))))) {
//si un ordre est trouvé, return(true) et sortie de la boucle
retour (vrai) ;
pause ;
} //end if((OrderType()==type) && (OrderMagicNumber()==magic) && (OrderSymbol()==Symbol())
} //fin pour (int i2=OrdersTotal()-1 ; i2>=0 ; i2--)

return(false) ; //retourne false
} //fin bool find_orders(int magic, int type)
//| fonction de recherche des commandes du type donné |
//+-------------------------------------------------------------------------------------------------------------------+

//+-------------------------------------------------------------------------------------------------------------------+
//| fonction de calcul de la valeur du Stop Loss pour les ordres ||.
double sl(int sl_value, int type, double price=0.0, string symb="NONE", int rmode=1) {
//type=0 -> achats sur le marché
//type=1 -> ventes sur le marché
if(symb=="NONE") symb=Symbol() ;
if(type==0) price=NormalizeDouble(MarketInfo(symb,MODE_ASK),MarketInfo(symb,MODE_DIGITS))
if(type==1) price=NormalizeDouble(MarketInfo(symb,MODE_BID),MarketInfo(symb,MODE_DIGITS)) ;
si(sl_value<=0) return(0) ;
si(rmode==1) {
if((type==0) || (type==2) || (type==4)) return(MarketInfo(symb,MODE_ASK)-sl_value*MarketInfo(symb,MODE_POINT)) ; //pour les achats
if((type==1) || (type==3) || (type==5)) return(MarketInfo(symb,MODE_BID)+sl_value*MarketInfo(symb,MODE_POINT)) ; //pour la vente
}
si(rmode==2) {
if((type==0) || (type==2) || (type==4)) return(MarketInfo(symb,MODE_BID)-sl_value*MarketInfo(symb,MODE_POINT)) ; //pour l'achat
if((type==1) || (type==3) || (type==5)) return(MarketInfo(symb,MODE_ASK)+sl_value*MarketInfo(symb,MODE_POINT)) ; //pour la vente
}
} //fin double sl(int sl_value, int type, double price=0.0, string symb="NONE", int rmode=1)
//| fonction pour le calcul de la valeur du Stop Loss pour les ordres | |
//+-------------------------------------------------------------------------------------------------------------------+

//+-------------------------------------------------------------------------------------------------------------------+
//| fonction de calcul des valeurs de Take Profit pour les ordres
double tp(int tp_value, int type, double price=0.0, string symb="NONE") {
//type=0 -> achat sur le marché
//type=1 -> ventes sur le marché
if(symb=="NONE") symb=Symbol() ;
if(type==0) price=NormalizeDouble(MarketInfo(symb,MODE_ASK),MarketInfo(symb,MODE_DIGITS) ;
if(type==1) price=NormalizeDouble(MarketInfo(symb,MODE_BID),MarketInfo(symb,MODE_DIGITS)) ;
si(tp_value<=0) return(0) ;
if((type==0) || (type==2) || (type==4)) return(price+tp_value*MarketInfo(symb,MODE_POINT)) ; //pour les achats
if((type==1) || (type==3) || (type==5)) return(MarketInfo(symb,MODE_BID)-tp_value*MarketInfo(symb,MODE_POINT)) ; //pour les ventes
} //fin double tp(int tp_value, int type, double price=0.0, string symb="NONE")
//| Fonction de calcul de la valeur du Take Profit pour les ordres.
//+-------------------------------------------------------------------------------------------------------------------+

//+-------------------------------------------------------------------------------------------------------------------+
//| fonction d'ouverture des commandes
void open_positions(int signal, double lot, double prix=0.0, string symb="NONE") {
//signal=0 -> signal pour ouvrir un achat
//signal=1 -> signal pour ouvrir la vente
/* extern */ int Count_Of_Trade_Try=5, Pause_Of_Trade_Try=5 ;

int i = 0 ; //variable pour le compteur de la boucle
int err = 0 ;

if(symb=="NONE") symb=Symbol() ;
si(signal==0)
price=NormalizeDouble(MarketInfo(symb,MODE_ASK),MarketInfo(symb,MODE_DIGITS)) ; //prix d'ouverture à l'achat
si(signal==1)
price=NormalizeDouble(MarketInfo(symb,MODE_BID),MarketInfo(symb,MODE_DIGITS)) ; //prix d'ouverture à la vente

while(i<=Count_Of_Trade_Try) {
La //fonction d'ouverture de l'ordre (intégrée). Pour faciliter la perception, les paramètres sont placés sur des lignes différentes :
int ticket = OrderSend(Symbole(), //symbole
signal, //type de commande
lot, //volume
prix, //prix d'ouverture
Slipage, //niveau de requote autorisé
sl(SL,signal), // valeur du Stop Loss
tp(TP,signal), //prendre la valeur du profit
Order_Comment, //commentaire de l'ordre
Magic_Number, //nombre magique
0, //temps d'expiration (utilisé pour les ordres en attente)
CLR_NONE) ; //couleur de la flèche affichée sur le graphique (CLR_NONE - la flèche n'est pas dessinée)
if(ticket!=-1) //si l'ouverture a réussi, dessiner un objet graphique et sortir de la boucle
pause ;
err=GetLastError() ;
if(err!=0) Print("Erreur : "+Market_Err_To_Str(err)) ;
i++ ;
Sleep(Pause_Of_Trade_Try*1000) ; //en cas d'erreur, pause avant réessai
} //finir alors que(i<=count)
} //fin void open_positions(int signal, double lot, double prix=0.0, string symb="NONE")
//| fonction d'ouverture des ordres |
//+-------------------------------------------------------------------------------------------------------------------+

//+-------------------------------------------------------------------------------------------------------+
//| fonction de décodage des codes d'erreur |
string Market_Err_To_Str(int err) {
/* la fonction ne couvre que les codes d'erreur des opérations commerciales */
switch(err) {
cas(0) : return("Aucune erreur") ;
case(1) : return("Aucune erreur, mais le résultat est inconnu") ;
cas(2) : return("Erreur générale") ;
cas(3) : return("Paramètres incorrects") ;
case(4) : return("Le serveur commercial est occupé") ;
case(5) : return("Ancienne version du terminal client") ;
case(6) : return("Pas de connexion au serveur commercial") ;
case(7) : return("Pas assez de droits") ;
case(8) : return("Demandes trop fréquentes") ;
case(9) : return("Une opération non valide perturbe le fonctionnement du serveur") ;
case(64) : return("Compte bloqué") ;
case(65) : return("Numéro de compte incorrect") ;
case(128) : return("Le délai de la transaction a expiré") ;
case(129) : return("Prix incorrect") ;
case(130) : return("Arrêts incorrects") ;
case(131) : return("Volume incorrect") ;
case(132) : return("Le marché est fermé") ;
case(133) : return("Trading interdit") ;
case(134) : return("Pas assez d'argent pour exécuter la transaction") ;
case(135) : return("Le prix a changé") ;
case(136) : return("Aucun prix") ;
case(137) : return("Le courtier est occupé") ;
case(138) : return("Nouveaux prix") ;
case(139) : return("La commande est bloquée et est déjà en cours de traitement") ;
case(140) : return("Achat autorisé uniquement") ;
case(141) : return("Trop de demandes") ;
case(145) : return("La modification n'est pas autorisée, car l'ordre est trop proche du marché") ;
case(146) : return("Le sous-système de négociation est occupé") ;
case(147) : return("L'utilisation de la date d'expiration est interdite par le courtier") ;
case(148) : return("Le nombre d'ordres ouverts et en attente a atteint la limite fixée par le courtier ;)
case(149) : return("Tentative d'ouverture d'une position opposée à une position existante si la couverture est interdite") ;
case(150) : return("Tentative de fermeture d'une position sur un symbole en violation de la règle FIFO") ;

par défaut : return("") ;
} //fin switch(err)
} //fin de la chaîne Err_To_Str(int err)
//| fonction pour décoder les codes d'erreur |
//+-------------------------------------------------------------------------------------------------------+

//+-------------------------------------------------------------------------------------------------------+
//| Opérations de clôture de la transaction ||
//+----------------------------------------------------------------------------------------------------+
//| fonction de clôture d'une commande par son numéro (ticket) ||.


bool close_by_ticket(int c_ticket, int slipage) {
/*
fonction de clôture d'une transaction par son numéro (ticket).
Lors de la clôture d'un ordre au marché, le niveau de slippage maximum autorisé est pris en compte (slipage).
*/
/* extern */ int Count_Of_Trade_Try=5, Pause_Of_Trade_Try=5 ;

int i = 0 ; //variable pour le compteur de la boucle
int err = 0 ;
bool ticket = false ; //variable pour la fermeture (non)réussie d'une transaction.
double price = 0.0 ; //prix de la transaction à clôturer (pour les ordres au marché)
if(OrderSelect(c_ticket,SELECT_BY_TICKET,MODE_TRADES)) { //sélectionner l'ordre par ticket
if(OrderType()==OP_BUY) price = NormalizeDouble(Bid,Digits) ; //prix à l'achat
if(OrderType()==OP_SELL) price = NormalizeDouble(Ask,Digits) ; //prix de vente
for(i=0;i<=Count_Of_Trade_Try;i++) {
if(OrderType()<=1) //si l'ordre est un ordre au marché, fermez-le, si c'est un ordre en attente, supprimez-le.
ticket=OrderClose(OrderTicket(),OrderLots(),price,slipage,CLR_NONE) ;
sinon
ticket=OrderDelete(OrderTicket()) ;

if(ticket) { //si la fermeture ou la suppression a réussi, renvoyer vrai et sortir de la boucle
retour (vrai) ;
pause ;
} //finir if(ticket)
err=GetLastError() ;
if(err!=0) Print("Erreur : "+Market_Err_To_Str(err)) ;
Sleep(Pause_Of_Trade_Try*1000) ; //en cas d'erreur, faire une pause avant de réessayer
} //fin pour(i=0;i<=Count_Of_Trade_Try;i++)
} //finir if(OrderSelect(c_ticket,SELECT_BY_TICKET,MODE_TRADES))

return(false) ; //retourne false
} //fin bool close_by_ticket(int c_ticket)
//| fonction de clôture d'une commande par son numéro (ticket) ||.
//+----------------------------------------------------------------------------------------------------+

bool cbm(int magic, int slipage, int type) {
/*
Fermer par magie (fermer tous les ordres du type donné avec le MagicNumber donné)
Le glissement maximal autorisé est pris en compte.
La fonction close_by_ticket est utilisée.
*/
int n = 0 ;
while (find_orders(magic, type))
for (int i2=OrdersTotal()-1 ; i2>=0 ; i2--) {
if (!OrderSelect(i2,SELECT_BY_POS,MODE_TRADES)) break ;

si ((OrderType()==type) && (OrderMagicNumber()==magic)) {
close_by_ticket(OrderTicket(), slip ;)
n++ ;
} //fin si (((OrderType()==OP_BUY) || (OrderType()==OP_SELL)) && (OrderMagicNumber()==magique))
} //fin pour (int i2=OrdersTotal()-1 ; i2>=0 ; i2--)

si(n>0)
retour (vrai) ;

retour (faux) ;
} //fin bool cbm(int magic, int slipage, int type)
//| Opérations de clôture du commerce |
//+-------------------------------------------------------------------------------------------------------+

//+-------------------------------------------------------------------------------------------------------------------+
//| trailing stop loss |
void T_SL() {
if(!UseTrailing) return ;
int i = 0 ;
for(i=0 ; i<OrdersTotal() ; i++) {
si( !(OrderSelect(i, SELECT_BY_POS, MODE_TRADES))) continuer ;
if(OrderSymbol() != Symbol() || OrderMagicNumber()!=Magic_Number) continuer ;

si(OrderType()==OP_BUY) {
if(NormalizeDouble(Bid-OrderOpenPrice(),Digits)>NormalizeDouble(TrailingStop*Point,Digits)) {
if(NormalizeDouble(OrderStopLoss(),Digits)<NormalizeDouble(Bid-(TrailingStop+TrailingStep-1)*Point,Digits))
OrderModify(OrderTicket(), OrderOpenPrice(), NormalizeDouble(Bid-TrailingStop*Point,Digits), OrderTakeProfit(), 0, CLR_NONE)
} //finir si(NormalizeDouble(Bid-OrderOpenPrice(),Digits)>NormalizeDouble(TrailingStop*Point,Digits))
} //fin si(OrderType()==OP_BUY)

si(OrderType()==OP_SELL) {
if(NormalizeDouble(OrderOpenPrice()-Ask,Digits)>NormalizeDouble(TrailingStop*Point,Digits)) {
if(NormalizeDouble(OrderStopLoss(),Digits)>NormalizeDouble(Ask+(TrailingStop+TrailingStep-1)*Point,Digits))
OrderModify(OrderTicket(), OrderOpenPrice(), NormalizeDouble(Ask+TrailingStop*Point,Digits), OrderTakeProfit(), 0, CLR_NONE)
} //fin si(NormalizeDouble(OrderOpenPrice()-Ask,Digits)>NormalizeDouble(TrailingStop*Point,Digits))
} //fin si(OrderType()==OP_SELL)
} //fin pour(i=0 ; i<OrdersTotal() ; i++)
} //fin void T_SL()
//| trailing stop loss |
//+-------------------------------------------------------------------------------------------------------------------+

//+-------------------------------------------------------------------------------------------------------------------+
//| fonction principale |
void start() {

int sig = fsignals() ;

if(!find_orders(Magic_Number)) {
si((sig!=-1)) {
if(!this_bar()) {
open_positions(sig, Lots) ;
if(Play_Sound)
PlaySound("alert.wav") ;
}
} //fin si((sig!=-1) && (!this_bar())
} else {
si(sig==0) {
if(cbm(Magic_Number, Slipage, 1)) {
open_positions(sig, Lots) ;
if(Play_Sound)
PlaySound("alert.wav") ;
} //finish if(cbm(Magic_Number, Slipage, 1))
} //fin si(sig==0)
if(sig==1) {
if(cbm(Magic_Number, Slipage, 0)) {
open_positions(sig, Lots) ;
if(Play_Sound)
PlaySound("alert.wav") ;
} //finir si(cbm(Magic_Number, Slipage, 0))
} //fin si(sig==1)
T_SL() ;
} //finir si(!find_orders(Magic_Number) (autre)
retour ;
}
//| fonction principale |
//+-------------------------------------------------------------------------------------------------------------------+
 

Bonjour les connaisseurs. Aide - ne fonctionne pas. Je pense que j'ai été confus par l'initialisation des variables . Ma tête tourne, mais je ne trouve aucune erreur.

Au lieu d'ouvrir des positions, l'EA doit dessiner des flèches au prix Klose (0), et au lieu de fermer - une croix et imprimer les données ( fExpiration_func(Expiration), fop_time, cl_time, fop_price, cl_price, ftype) dans une nouvelle ligne.

Ici, le stochastique n'est pris qu'à titre d'exemple.

 //+------------------------------------------------------------------+
//|                                                     binar_v1.mq4 |
//|                        Copyright 2014, MetaQuotes Software Corp. |
//|                                              https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2014, MetaQuotes Software Corp."
#property link        "https://www.mql5.com"
#property version    "1.00"


//--- input Time parameters
input uchar     hs = 9 ; 
input uchar     ms = 0 ; 
input uchar     he = 18 ; 
input uchar     me = 0 ;
//--- input Indicator parameters

//--- input Expiration parameters
input uchar     Expiration = 2 ; //время експирации в минутах


input bool      strategy_1  =   true ;


bool poz;                                   //открытая/закрытая позиция
datetime op_time;                         //время открытия
double op_price;                           //цена открытия
char type;                                 //тип открытой позиции -1 СЕЛЛ, 1- БАИ
//+=================================================================================+
//| Expert initialization function                                   |
//+------------------------------------------------------------------+
int OnInit ()
  {
//--- 
   
      
//---
   return ( INIT_SUCCEEDED );
  }
//+=================================================================================+
//| Expert deinitialization function                                 |
//+------------------------------------------------------------------+
void OnDeinit ( const int reason)
  {
//--- destroy timer
   
      
  }
//+=================================================================================+
//| Expert tick function                                             |
//+------------------------------------------------------------------+
void OnTick ()
  {
   //подщитаем арифметическое среднее OC за прошлую неделю
   //Пощет один раз в неделю    
     /* if(isNewBar("",PERIOD_W1)){      
         uchar iPr=iBarShift(NULL,PERIOD_M1,iTime(NULL,PERIOD_W1,1));
         uchar iPn=iBarShift(NULL,PERIOD_M1,iTime(NULL,PERIOD_W1,1))+10080;
         double avgM1=AvgOC(iPr,iPn,0);                                     // M1 OC цредняя за прошлую неделю               
      }*/
       if (!fisTradeTimeInt( 9 , 0 , 18 , 0 )) return ;                                 //Время торгов
       if (strategy_1== true )fStrategy1();
  }
//+=================================================================================+
//| Timer function                                                   |
//+------------------------------------------------------------------+

//+=================================================================================+
void fStrategy1
   (
   
   )
//--------------------   
{
   

   if (poz== true )                             //если есть открыта позиция
      fClose_Pos(op_time,op_price,type);       //закрываем
   if (poz== false ){                           //если нет открытой
      fOpen_buy(poz,op_time,op_price,type);   //покупка   
      fOpen_sell(poz,op_time,op_price,type);   //продажа
   }       
}
//+=================================================================================+
void fOpen_buy
   (
   bool & op,                                 //открытая/закрытая позиция
   datetime & out_op_time,                       //время открытия
   double & out_op_price,                         //цена открытия
   char & out_type                               //тип открытой позиции -1 СЕЛЛ, 1- БАИ
   )
//--------------------
{
   double stoch_M0_1 = iStochastic ( NULL , 0 , 5 , 3 , 3 , MODE_SMA , 0 , MODE_MAIN , 1 );
   double stoch_M0_2 = iStochastic ( NULL , 0 , 5 , 3 , 3 , MODE_SMA , 0 , MODE_MAIN , 2 );
   double stoch_M0_1s= iStochastic ( NULL , 0 , 5 , 3 , 3 , MODE_SMA , 0 , MODE_SIGNAL , 1 );
   double stoch_M0_2s= iStochastic ( NULL , 0 , 5 , 3 , 3 , MODE_SMA , 0 , MODE_SIGNAL , 2 );
   
   string arrowName;
   
   if (!op){      
       if (stoch_M0_1 < 20 && stoch_M0_2 < stoch_M0_2s && stoch_M0_1s < stoch_M0_1){
          out_type=- 1 ;
          op= true ;
          out_op_price= Close [ 0 ];
          out_op_time= Time [ 0 ];
          arrowName= "Buy" + TimeToStr ( TimeCurrent (), TIME_DATE | TIME_SECONDS );
          fDrawArrow(arrowName= "" ,out_op_price,out_op_time,Blue, 240 );               //стрелка открытой позиции
      }
          
   }     
}
//+=================================================================================+
void fOpen_sell
   (
   bool op,                                 //открытая/закрытая позиция
   datetime & out_op_time,                       //время открытия
   double & out_op_price,                         //цена открытия
   char & out_type                               //тип открытой позиции -1 СЕЛЛ, 1- БАИ
   )
//--------------------   
{      
   double stoch_M0_1 = iStochastic ( NULL , 0 , 5 , 3 , 3 , MODE_SMA , 0 , MODE_MAIN , 1 );
   double stoch_M0_2 = iStochastic ( NULL , 0 , 5 , 3 , 3 , MODE_SMA , 0 , MODE_MAIN , 2 );
   double stoch_M0_1s= iStochastic ( NULL , 0 , 5 , 3 , 3 , MODE_SMA , 0 , MODE_SIGNAL , 1 );
   double stoch_M0_2s= iStochastic ( NULL , 0 , 5 , 3 , 3 , MODE_SMA , 0 , MODE_SIGNAL , 2 );
   
   string arrowName;
   
   if (!op){      
       if (stoch_M0_1 > 80 && stoch_M0_2 > stoch_M0_2s && stoch_M0_1s > stoch_M0_1){
          out_type=- 1 ;
          op= true ;
          out_op_price= Close [ 0 ];
          out_op_time= Time [ 0 ];
          arrowName= "Sell" + TimeToStr ( TimeCurrent (), TIME_DATE | TIME_SECONDS );
          fDrawArrow(arrowName= "" ,out_op_price,out_op_time,Red, 240 );               //стрелка открытой позиции
      }
          
   }     
}
//+=================================================================================+
void fClose_Pos //jei yra atidaryta, uzdarom
   (
   datetime fop_time,                       //время открытия
   double fop_price,                       //цена открытия
   char ftype                               //тип открытой позиции -1 СЕЛЛ, 1- БАИ
   )
//-------------------   
{
   string arrowName= "Close" + TimeToStr ( TimeCurrent (), TIME_DATE | TIME_SECONDS );    
   double cl_price;
   string fileName= StringConcatenate ( "Strategy_1  " ,Expiration, " " , Period (), ".csv" );
   
   if (Expiration<= 5 ){                     //
       datetime cl_time= Expiration* 60 +op_time;                                         //время закрытия
       if ( TimeCurrent ()>=cl_time){
         
         cl_price= Close [ 0 ];               //цена закрытия         
         fDrawArrow(arrowName,cl_price,cl_time,Yellow, 251 );                             //наносим крестик на график
         fSaveToFile(fileName,Expiration, fop_time, cl_time, fop_price, cl_price, ftype);   //в новую строку сохроняем в файле
      }   
   }
   else {
      cl_time= fExpiration_func(Expiration)* 60 +op_time;                                 //время закрытия
      
       if ( TimeMinute ( TimeCurrent ())>= TimeMinute (cl_time)){
         
         cl_price= Close [ 0 ];      
         fDrawArrow(arrowName,cl_price,cl_time,Yellow, 251 );                             //наносим крестик на график
         fSaveToFile(fileName,fExpiration_func(Expiration), fop_time, cl_time, fop_price, cl_price, ftype); //в новую строку сохроняем в файле
     }
   }   
}
//+=================================================================================+
bool fisNewBar 
   (
   string f_sy,   
   int f_tf
   )
{
     int iIndex = - 1 ;
//----
     switch (f_tf)
    {
         case 1     : iIndex = 0 ; break ;
         case 5     : iIndex = 1 ; break ;
         case 15    : iIndex = 2 ; break ;
         case 30    : iIndex = 3 ; break ;
         case 60    : iIndex = 4 ; break ;
         case 240   : iIndex = 5 ; break ;
         case 1440 : iIndex = 6 ; break ;
         case 10080 : iIndex = 7 ; break ;
         default    : iIndex =- 1 ; break ;
    }
    
     static int LastBar[ 8 ]= { 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 }; 
     datetime curbar = iTime (f_sy, f_tf, 0 );
     if (LastBar[iIndex] != curbar)
    {
        LastBar[iIndex] = curbar;
         return ( true );
    }
     else
    { return ( false );
 }
 }
//+=================================================================================+
int fExpiration_func
   (
   uchar e
   )
//--------------------   
{  
   uchar ex= 0 ;
   uchar mod= 0 ;
   if (e< 6 ) 
      ex=e; //return(e);
   else {
      mod= fmod (e, 5 );
       if (mod== 4 ) 
         ex=e+mod; //return(e+mod);
       else
         if (mod < 4 ) 
            ex=e-mod; //return(e-mod);
    }     
   return (ex); //grazina laiko tarpa minutemis
}
//+=================================================================================+
bool fisTradeTimeInt     //время торгов
   (
   uchar hstart= 0 , 
   uchar mstart= 0 , 
   uchar hend= 0 , 
   uchar mend= 0
   ) 
//--------------------   
{
   datetime db, de;           
   uchar       hc;              

  db= StrToTime ( TimeToStr ( TimeCurrent (), TIME_DATE )+ " " +hstart+ ":" +mstart);
  de= StrToTime ( TimeToStr ( TimeCurrent (), TIME_DATE )+ " " +hend+ ":" +mend);
  hc= TimeHour ( TimeCurrent ());
   if (db>=de) {
     if (hc>=hend) de+= 24 * 60 * 60 ; 
     else db-= 24 * 60 * 60 ;
  }
   if ( TimeCurrent ()>=db && TimeCurrent ()<=de) return ( True );
   else return ( False );
}
//+=================================================================================+
void fDrawArrow //наносим стрелки на график
   (
   string arrowName= "" ,
   double dwPrice= 0 ,
   datetime dwTime= 0 ,
   color dwColor=Silver,
   uchar dwArrowIndex= 0
   )
//--------------------   
{
   ObjectCreate       ( 0 ,arrowName, OBJ_ARROW , 0 , 0 , 0 , 0 , 0 );                 // создадим стрелку
   ObjectSetInteger   ( 0 ,arrowName, OBJPROP_ARROWCODE ,dwArrowIndex);       // установим код стрелки
   ObjectSetInteger   ( 0 ,arrowName, OBJPROP_COLOR ,dwTime);                 // зададим время
   ObjectSetInteger   ( 0 ,arrowName, OBJPROP_COLOR ,dwColor);               // зададим Цвет
   ObjectSetDouble    ( 0 ,arrowName, OBJPROP_PRICE ,dwPrice);               // зададим цену
   ChartRedraw ( 0 );
}
//+=================================================================================+
//Aritmetinis vidurkis

double fAvgOC
   (
   uchar count_start,       //nuo kurio baro pradesim skaiciuoti
   uchar end_count,         //iki kurio baro skaiciuosime
   uchar j= 0                //keli barai is eiles
   )
//--------------------   
{
   static double sum= 0 ;
   if (sum== 0 ){
       int n= 0 ;
       for ( int i=end_count; i<count_start; i++){
         double h= iClose ( NULL , PERIOD_M1 ,i);  
         double l= iOpen ( NULL , PERIOD_M1 ,i+j); 
         sum+= fabs (h-l);                   //padidinam avg 
         n++;                             //kie kartu buvo didintas avg
      }
       double avg=sum/n;                           //Surandam Mean aritmetini vidurki                 
   }   
   return (avg);                           //grazina kainu skirtumo vidurki
}
//+=================================================================================+
void fSaveToFile
   (
   string fileName,
   char expirration,       //realus ekspiracijos laikas minutemis
   datetime fop_time,
   datetime fcl_time,
   double fop_price,
   double fcl_price,
   uchar ftype
   )
//--------------------   
{
   //--- правильный способ работы в "файловой песочнице"
   ResetLastError ();
  
   int filehandle= FileOpen (fileName, FILE_WRITE | FILE_CSV );
   if (filehandle!= INVALID_HANDLE )
     {
      FileWrite(filehandle,
               expirration, //real expiration time
               fop_time, //TimeToStr(op_time,TIME_DATE|TIME_SECONDS),
               fcl_time, //TimeToStr(cl_time,TIME_DATE|TIME_SECONDS),
               op_price,
               fcl_price,
               type);
       FileClose (filehandle);
       Print ( "FileOpen OK" );
     }
   else Print ( "Операция FileOpen неудачна, ошибка " ,GetLastError());
}
//+=================================================================================+
/*int gUrdala_News()
{
   HideTestIndicators(true);
   int nResult = iCustom(NULL, PERIOD_M1, "Urdala_News", MinDo, MinPosle, ChasPoyasServera, 0, 0);
   HideTestIndicators(false);
   return(nResult);
}*/
//+=================================================================================+
/*datetime SecondsAfter    //grazinamas laiko tarpas po timeOp
   (
   datetime timeOp,      //laiko atskaitos pradzia
   datetime t
   ) 
{
     
   if (t<timeOp) t=timeOp;          
   return(TimeCurrent()-t);
}*/
//+=================================================================================+
//---------------------------------------------------
   /* void click
   (
   int x, 
   int y
   ) 
   {    
      SetCursorPos(x,y); // см. тут _http://www.vsokovikov.narod.ru/New_MSDN_API/Cursor/fn_setcursorpos.htm 
      mouse_event(MOUSEEVENTF_LEFTDOWN, x, y, 0, 0); 
      mouse_event(MOUSEEVENTF_LEFTUP, x, y, 0, 0); 
   }*/
//+=================================================================================+
//---------------------------------------------------
   /*void key
   (
   uchar kodas
   )
   {  
      keybd_event(kodas,0,0,0);      
      keybd_event(kodas,0,KEYEVENTF_KEYUP,0); 
   } */   
 

La question est alors de savoir comment renvoyer les deux valeurs. J'ai essayé ceci, mais les erreurs

void OnTick()
  {
//---
   
   xy(10,20,100,100);
   Print("x=",x,"y=",y);
  }
//+------------------------------------------------------------------+
void xy(int xx,int xxx, int yy,int yyy,int & x,int & y){
   x=xx*xxx;
   y=yy+yyy;
}
 
gince:

La question est alors de savoir comment renvoyer les deux valeurs. J'ai essayé ceci, mais les erreurs


void OnTick()
  {
//---
   int x,y;
   xy(10,20,100,100,x,y);
   Print("x=",x,"y=",y);
  }
//+------------------------------------------------------------------+
void xy(int xx,int xxx, int yy,int yyy, int &x,int &y){
   x=xx*xxx;
   y=yy+yyy;
}
 
gince:

La question est alors de savoir comment renvoyer les deux valeurs. J'ai essayé ceci, mais les erreurs


Avez-vous essayé d'utiliser des variables ? Peut-être que ça aidera.

void OnTick()
  {
//---
   int x=100.0, y=100.0;
   xy(10,20,100, 100, x,y);
   Print("x=",x,"y=",y);
  }
//+------------------------------------------------------------------+
void xy(int xx,int xxx, int yy,int yyy,int & x,int & y){
   x=xx*xxx;
   y=yy+yyy;
}
 

Aidez-nous si vous le voulez bien

pour apprendre à un conseiller expert à négocier en fonction de l'indicateur

BS_Living Now ver #1.mq4 https://www.mql5.com/ru/code/11014#50910

UP= iCustom(Symbol(),NULL, "Now",BQuant,0,0) ;

DOW= iCustom(Symbol(),NULL, "Now",BQuant,1,0) ;


if(DOW){OrderSend(Symbol(), OP_SELL, Lot, Bid, Slip, 0, 0, "Forex-Robots.ru SELL", Magic, 0,Red);}


if(UP ){OrderSend(Symbol(), OP_BUY, Lot, Ask, Slip, 0, 0, "Forex-Robots.ru BUY", Magic, 0,Blue);}


Commentaire

(

"Profit" : ", UP,

"Profit" : ", DOW

) ;

J'ai essayé de lire les valeurs dans le commentaire mais elles sont toujours statiques.

 
Vinin:


Avez-vous essayé d'utiliser des variables ? Cela pourrait aider.


Merci, ça marche.

 
sannin:

Aidez-nous si vous le voulez bien

pour apprendre à un conseiller expert à négocier en fonction de l'indicateur

BS_Living Now ver #1.mq4 https://www.mql5.com/ru/code/11014#50910


UP= iCustom(Symbol(),NULL,"Now",BQuant,0,2);//

DOW= iCustom(Symbol(),NULL,"Now",BQuant,1,2);


if(DOW != 0){OrderSend(Symbol(), OP_SELL, Lot, Bid, Slip, 0, 0, "Forex-Robots.ru SELL", Magic, 0,Red);}



if(UP != 0){OrderSend(Symbol(), OP_BUY, Lot, Ask, Slip, 0, 0, "Forex-Robots.ru BUY", Magic, 0,Blue);}
Je n'ai pas vraiment approfondi le sujet, mais je pense que c'est quelque chose comme ça.