Fractal Break Out-Stuck - page 5

 
RaptorUK:

C'est horrible pour moi, mais si ça a un sens pour toi, alors c'est génial. Je le fais comme ça pour que le retrait montre où se trouve le bloc...

ou faites-le comme ça...


Moi aussi, je trouve ça horrible ! haha



Je vais jouer avec tes idées, merci Raptor.

 
ZacharyRC:
Je pense que cela m'aidera aussi, en plaçant les crochets directement sous l'opérateur.

De cette façon, la vôtre dans le livre
me semble horrible aussi ....

 
2013.03.19 17:37:19 2013.01.30 23:59 Tester : l'ordre #98 est fermé
2013.03.19 17:37:19 2013.01.30 23:39 BreakOutEA EURUSD,M1 : ModifyError = 98 0
2013.03.19 17:37:19 2013.01.30 23:39 BreakOutEA EURUSD,M1 : modify #98 buy 0.10 EURUSD at 1.35716 sl : 1.35590 tp : 1.36190 ok
2013.03.19 17:37:19 2013.01.30 23:39 BreakOutEA EURUSD,M1 : open #98 acheter 0.10 EURUSD à 1.35716 ok
2013.03.19 17:37:19 2013.01.30 19:50 Tester : stop loss #97 à 1.35570 (1.35560 / 1.35586)
2013.03.19 17:37:19 2013.01.30 17:24 BreakOutEA EURUSD,M1 : ModifyError = 97 0
2013.03.19 17:37:19 2013.01.30 17:24 BreakOutEA EURUSD,M1 : modify #97 buy 0.10 EURUSD at 1.35696 sl : 1.35570 tp : 1.36170 ok
2013.03.19 17:37:19 2013.01.30 17:24 BreakOutEA EURUSD,M1 : ouvrir #97 acheter 0.10 EURUSD à 1.35696 ok
2013.03.19 17:37:19 2013.01.30 15:02 Tester : prendre le profit #96 à 1.35610 (1.35610 / 1.35636)
2013.03.19 17:37:19 2013.01.30 09:11 BreakOutEA EURUSD,M1 : ModifyError = 96 0
2013.03.19 17:37:19 2013.01.30 09:11 BreakOutEA EURUSD,M1 : modify #96 buy 0.10 EURUSD at 1.35136 sl : 1.35010 tp : 1.35610 ok
//----------------------------------------------//
//-----------------EXITING ORDERS---------------//

for(int i=OrdersTotal()-1; i>=0;i--)
{
if(OrderSelect(i,SELECT_BY_POS,MODE_TRADES)==false)  break;

if(OrderMagicNumber()!=MagicNumber || OrderSymbol() !=Symbol()) continue;

double SL=OrderStopLoss();
bool result;
int  error;
//-----The Differnt Order types---//

if(OrderType()==OP_BUY)
{

  if(BreakEven>0)
  {
   
     if(Bid-OrderOpenPrice() >=BreakEven*mypoint*Point)
     {
      
        if(OrderStopLoss() <OrderOpenPrice())
        {
         
          SL=OrderOpenPrice()+Point;
        }
     }
  }
}
                  
          
if(OrderType()==OP_SELL)
{

 if(BreakEven>0)
 {
  
    if(OrderOpenPrice()-Ask >= Point*BreakEven*mypoint)
    {
     
       if(OrderStopLoss()>OrderOpenPrice())
       {
        
          SL=OrderOpenPrice() - Point;
    
       }
    }
  }
}


if(SL != OrderStopLoss()) result=OrderModify(OrderTicket(),OrderOpenPrice(),SL,OrderTakeProfit(),0,CLR_NONE);
         if(result!=TRUE) { error=GetLastError(); Print("ModifyError = ",OrderTicket(),"   ",error);}     
}
return(0);
}
}


Je ne demande pas que les choses me soient faciles, mais je ne peux m'empêcher de penser qu'il y a quelque chose de stupide ici.

Pas d'erreurs, mais il ne veut pas déplacer le stop vers BE (prix ouvert). Je me sens comme un échec haha

 

J'ai également déplacé les parenthèses, pour vérifier et m'assurer qu'elles renvoient des valeurs correctes.


L'ensemble du code serait-il bénéfique ?

 
ZacharyRC:

J'ai également déplacé les crochets pour vérifier qu'ils renvoient les bonnes valeurs.


L'ensemble du code serait-il utile ?


ERREUR DANS LE CODE

bool result;

doit être

bool result = true;

Désolé, j'ai oublié.

 
extern string Label1="===GENERAL TRADE SETTINGS===";
extern int   TakeProfit=25;
extern int    StopLoss=10;
extern int    TrailingStop=0;
extern int    Slippage=2;
extern double  Lots=0.1;
extern int    MagicNumber=0;
//------------------Time Filter---------------------//
extern string Label9="===TIME FILTER SETTINGS===";
extern int    Start_Time=0;
extern int    Finish_Time=8;

//---------------Money Managerment------------------//
extern string Label4="===Money Management===";
extern bool Money.Management=true ;
extern double Risk=1;

//-------------------------------------------------//
extern int BreakEven=15;
//---------------Moving Average---------------------//
extern string Label5="===MOVING AVERAGE SETTINGS===";
extern int    MA_Period=200;
extern int    MA_Shift=0;
extern int    MA_Type=1;
extern int    MA_Price=0;

//-------------------------------------------------//
//---------------FRACTAL INPUTS--------------------//
extern string Label6="===FRACTAL INPUTS===";
extern int    Fractal_Buffer=0;
extern int    Fractal_TF=0;

//-------------------------------------------------//
//-------------------------------------------------//
//-------------------------------------------------//
//---------INITIALIZE BROKERAGE DIGITS-------------//
int start()
{

int mypoint;

if (Digits==3||Digits==5){ mypoint=10;}
else {mypoint=1;}


//--------------------------------------//
//------------TIME FILETER Raptor U.K. Style-----------//
 int Current_Time = TimeHour(TimeCurrent());
 if (Start_Time == 0) Start_Time = 24; if (Finish_Time == 0) Finish_Time = 24; if (Current_Time == 0) Current_Time = 24;
      
      if ( Start_Time < Finish_Time )
      {
         if ( (Current_Time < Start_Time) || (Current_Time >= Finish_Time) ) return(0);
      }
      
      if ( Start_Time > Finish_Time )
      {
         if ( (Current_Time < Start_Time) && (Current_Time >= Finish_Time) ) return(0);
      } 
//--------------------------------------//      
//------------Orders Accounting---------//

 int total = OrdersTotal();
if(total<1)
{

//--------------------------------------//
//------------Money Management----------//
 if (Money.Management)
   {
      if (Risk<1 || Risk>1000)
      {
         Comment("Invalid Risk Value.");
         return(0);
      }
      else
      {
         Lots=MathFloor((AccountFreeMargin()*AccountLeverage()*Risk*Point*mypoint*100)/(Ask*MarketInfo(Symbol(),MODE_LOTSIZE)*MarketInfo(Symbol(),MODE_MINLOT)))*MarketInfo(Symbol(),MODE_MINLOT);
      }
   }
//------------------------------------------//
//-------------EMA SETTINGS-----------------//
double EMA=iMA(NULL,0,MA_Period,MA_Shift,MA_Type,MA_Price,0);
double BarClose;
BarClose=Bid;

//---------------------------------------------------------//
//-----------------FRACTALS--------------------------------//
double fractalU=iFractals(NULL,Fractal_TF,1,Fractal_Buffer);
double fractalD=iFractals(NULL,Fractal_TF,2,Fractal_Buffer);


//----------------PRCOESSING BUY---------------------------//
if(BarClose>EMA && BarClose== fractalU)
{
double SLB=Bid-StopLoss*Point*mypoint;
double TPB=Bid+TakeProfit*Point*mypoint;
int buy= OrderSend(Symbol(),0,Lots,Ask,Slippage,0,0);
}

if(buy>0) 
{
OrderSelect(buy,SELECT_BY_TICKET,MODE_TRADES);
OrderModify(buy,OrderOpenPrice(),SLB,TPB,0,Green);
}

//---------PROCESSING SELL---------//
if(BarClose<EMA&&BarClose==fractalD)
{
double SLS=Ask+StopLoss*Point*mypoint;
double TPS=Ask-TakeProfit*Point*mypoint;

int sell= OrderSend(Symbol(),1,Lots,Bid,Slippage,0,0);
}

if (sell>0)
{
OrderSelect(sell,SELECT_BY_TICKET,MODE_TRADES);
OrderModify(sell,OrderOpenPrice(),SLS,TPB,0,Green);
}




//----------------------------------------------//
//-----------------EXITING ORDERS---------------//

for(int i=OrdersTotal()-1; i>=0;i--)
{
if(OrderSelect(i,SELECT_BY_POS,MODE_TRADES)==false)  break;

if(OrderMagicNumber()!=MagicNumber || OrderSymbol() !=Symbol()) continue;

double SL=OrderStopLoss();
bool result=true;
int  error;
//-----The Differnt Order types---//

if(OrderType()==OP_BUY)
{

  if(BreakEven>0)
  {
   
     if(Bid-OrderOpenPrice() >=BreakEven*mypoint*Point)
     {
      
        if(OrderStopLoss() <OrderOpenPrice())
        {
         
          SL=OrderOpenPrice()+Point;
        }
     }
  }
}
                  
          

if(OrderType()==OP_SELL){

 if(BreakEven>0)
 {
  
    if(OrderOpenPrice()-Ask >= Point*BreakEven*mypoint)
    {
     
       if(OrderStopLoss()>OrderOpenPrice())
       {
        
          SL=OrderOpenPrice() - Point;
    
       }
    }
  }
}


if(SL != OrderStopLoss()) result=OrderModify(OrderTicket(),OrderOpenPrice(),SL,OrderTakeProfit(),0,CLR_NONE);
         if(result!=TRUE) { error=GetLastError(); Print("ModifyError = ",OrderTicket(),"   ",error);}     
}
return(0);
}
}

J'ai également effectué cette modification. Aucune erreur n'est signalée, mais le SL n'est pas déplacé après BreakEven.

D'après le livre, cela devrait fonctionner... étrange.

 

Encore beaucoup à faire

Je ne vois pas que vous ayez compris le problème de trouver la bonne barre fractale.

.

Mais d'abord, j'aimerais attirer votre attention sur https://www.mql5.com/en/forum/138993.

int mypoint;

if (Digits==3||Digits==5){ mypoint=10;}
else {mypoint=1;}

Votre code n'est pas la meilleure façon de gérer les symboles de notation de chiffres différents, lisez pourquoi136 : erreur "sans guillemets" et NormalizeDouble.

Vous l'avez également placé dans

int start()
{

maintenant chaque tick doit le passer...

on vous a dit avant de le placer dans

//+------------------------------------------------------------------+
//| expert initialization function                                   |
//+------------------------------------------------------------------+
int init()
  {
//----
   
//----
   return(0);
  }

.

votre filtre de temps de trading fait que votre EA ne fait rien puis retourne en dehors de la période pour travailler

si vous avez des trades à gérer, alors ils n'iront pas .... au breakeven ou au trailing en dehors de la période de travail.

.

et pouvez-vous dire où l'open { de ce code

 int total = OrdersTotal();
if(total<1)
{

est fermé......

 
deVries:

Encore beaucoup à faire

Je ne vois pas que vous ayez compris le problème de trouver la bonne barre fractale.

.

Mais d'abord j'aimerais attirer votre attention sur https://www.mql5.com/en/forum/138993

Votre code n'est pas la meilleure façon de gérer les symboles de notation de chiffres différents, lisez pourquoi136 : erreur "sans guillemets" et NormalizeDouble.

Vous l'avez également placé dans

maintenant chaque tick doit le passer...

on vous a dit avant de le placer dans

.

votre filtre de temps de trading fait que votre EA ne fait rien puis retourne en dehors de la période pour travailler.

si vous avez des trades à gérer alors ils ne vont pas .... aller au breakeven ou au trailing en dehors de la période de travail

.

et pouvez-vous dire où l'open { de ce code

est fermé......

Hé Devries, désolé que ça ait pris si longtemps, j'ai travaillé ailleurs.

J'ai corrigé les chiffres, et je les ai placés dans le init(), je m'excuse de ne pas l'avoir fait la première fois.

Quant à la

 int total = OrdersTotal();
if(total<1)
{

Il est situé à la fin du code pour start()


return (0) ;

}

}

C'est très probablement incorrect aussi.


Le filtre temporel n'a pas d'importance pour le codage pour le moment, car je l'ai retiré et il n'a toujours pas géré les ordres et déplacé le stop vers BE.


Que voulez-vous dire par quelle fractale ? Il prend la fractale correcte, qui est la fractale la plus précédente filtrée par l'EMA.

 
As for the 

 int total = OrdersTotal();
if(total<1)
{
It is located at the end of the code for start()

S'il vous plaît montrez-moi dans le code où exactement ...... cette parenthèse se termine

.

A propos des fractales....

double fractalU=iFractals(NULL,Fractal_TF,1,Fractal_Buffer);
double fractalD=iFractals(NULL,Fractal_TF,2,Fractal_Buffer);

imprimez les valeurs et regardez si vous l'avez fait de la bonne façon.....

s'il vous plaît

 
extern string Label1="===GENERAL TRADE SETTINGS===";
extern int   TakeProfit=25;
extern int    StopLoss=10;
extern int    TrailingStop=0;
extern int    Slippage=2;
extern double  Lots=0.1;
extern int    MagicNumber=0;
//------------------Time Filter---------------------//
extern string Label9="===TIME FILTER SETTINGS===";
extern int    Start_Time=0;
extern int    Finish_Time=8;

//---------------Money Managerment------------------//
extern string Label4="===Money Management===";
extern bool Money.Management=true ;
extern double Risk=1;

//-------------------------------------------------//
extern int BreakEven=15;
//---------------Moving Average---------------------//
extern string Label5="===MOVING AVERAGE SETTINGS===";
extern int    MA_Period=200;
extern int    MA_Shift=0;
extern int    MA_Type=1;
extern int    MA_Price=0;

//-------------------------------------------------//
//---------------FRACTAL INPUTS--------------------//
extern string Label6="===FRACTAL INPUTS===";
extern int    Fractal_Buffer=0;
extern int    Fractal_TF=0;

//-------------------------------------------------//
//-------------------------------------------------//
//-------------------------------------------------//
//---------INITIALIZE BROKERAGE DIGITS-------------//
int     pips2points;    
double  pips2dbl;       
int     Digits.pips;    
int     init(){
     if (Digits % 2 == 1){      
                pips2dbl    = Point*10; pips2points = 10;   Digits.pips = 1;
    } else {    pips2dbl    = Point;    pips2points =  1;   Digits.pips = 0; }
return(0);
}




//--------Start Funcitons-------//
int start()
{



//------------TIME FILETER Raptor U.K. Style-----------//

//--------------------------------------//      
//------------Orders Accounting---------//

 int total = OrdersTotal();
if(total<1)
{

//--------------------------------------//
//------------Money Management----------//
 if (Money.Management)
   {
      if (Risk<1 || Risk>1000)
      {
         Comment("Invalid Risk Value.");
         return(0);
      }
      else
      {
         Lots=MathFloor((AccountFreeMargin()*AccountLeverage()*Risk*pips2dbl*100)/(Ask*MarketInfo(Symbol(),MODE_LOTSIZE)*MarketInfo(Symbol(),MODE_MINLOT)))*MarketInfo(Symbol(),MODE_MINLOT);
      }
   }
//------------------------------------------//
//-------------EMA SETTINGS-----------------//
double EMA=iMA(NULL,0,MA_Period,MA_Shift,MA_Type,MA_Price,0);
double BarClose;
BarClose=Bid;

//---------------------------------------------------------//
//-----------------FRACTALS--------------------------------//
double fractalU=iFractals(NULL,Fractal_TF,1,Fractal_Buffer);
double fractalD=iFractals(NULL,Fractal_TF,2,Fractal_Buffer);
Print( "This Up Fractal is",fractalU,"Down Fractal is",fractalD);

//----------------PRCOESSING BUY---------------------------//
if(BarClose>EMA && BarClose== fractalU)
{
double SLB=Bid-StopLoss*pips2dbl;
double TPB=Bid+TakeProfit*pips2dbl;
int buy= OrderSend(Symbol(),0,Lots,Ask,Slippage*pips2points,0,0);
}

if(buy>0) 
{
OrderSelect(buy,SELECT_BY_TICKET,MODE_TRADES);
OrderModify(buy,OrderOpenPrice(),SLB,TPB,0,Green);
}

//---------PROCESSING SELL---------//
if(BarClose<EMA&&BarClose==fractalD)
{
double SLS=Ask+StopLoss*pips2dbl;
double TPS=Ask-TakeProfit*pips2dbl;

int sell= OrderSend(Symbol(),1,Lots,Bid,Slippage*pips2points,0,0);
}

if (sell>0)
{
OrderSelect(sell,SELECT_BY_TICKET,MODE_TRADES);
OrderModify(sell,OrderOpenPrice(),SLS,TPB,0,Green);
}




//----------------------------------------------//
//-----------------EXITING ORDERS---------------//

for(int i=OrdersTotal()-1; i>=0;i--)
{
if(OrderSelect(i,SELECT_BY_POS,MODE_TRADES)==false)  break;

if(OrderMagicNumber()!=MagicNumber || OrderSymbol() !=Symbol()) continue;

double SL=OrderStopLoss();
bool result;
int  error;
//-----The Differnt Order types---//

if(OrderType()==OP_BUY)
{

  if(BreakEven>0)
  {
   
     if(Bid-OrderOpenPrice() >=BreakEven*pips2dbl)
     {
      
        if(OrderStopLoss() <OrderOpenPrice())
        {
         
          SL=OrderOpenPrice()+Point;
        }
     }
  }
}
                  
          

if(OrderType()==OP_SELL){

 if(BreakEven>0)
 {
  
    if(OrderOpenPrice()-Ask >= BreakEven*pips2dbl)
    {
     
       if(OrderStopLoss()>OrderOpenPrice())
       {
        
          SL=OrderOpenPrice() - Point;
    
       }
    }
  }
}


if(SL != OrderStopLoss()) result=OrderModify(OrderTicket(),OrderOpenPrice(),SL,OrderTakeProfit(),0,CLR_NONE);
         if(result!=TRUE) { error=GetLastError(); Print("ModifyError = ",OrderTicket(),"   ",error);}     
}
return(0);
}//THIS IS THE BRACKET FOR ORDERS OPEN CLOSE********************
}

J'ai mis l'impression pour les deux fractales et il est l'impression de certaines valeurs correctes et beaucoup de 00. défauts.

2013.03.26 17:45:18 2013.02.27 23:59 Tester : l'ordre #111 est fermé
2013.03.26 17:45:17 2013.02.01 18:04 BreakOutEA EURUSD,M1 : ModifyError = 111 0
2013.03.26 17:45:17 2013.02.01 18:04 BreakOutEA EURUSD,M1 : modifier #111 vendre 0.09 EURUSD à 1.36640 sl : 1.36771 tp : 0.00000 ok
2013.03.26 17:45:17 2013.02.01 18:04 BreakOutEA EURUSD,M1 : ouvrir #111 vendre 0.09 EURUSD à 1.36640 ok
2013.03.26 17:45:17 2013.02.01 18:04 BreakOutEA EURUSD,M1 : Cette fractale ascendante est0Fractale descendante est1.3664
2013.03.26 17:45:17 2013.02.01 18:04 BreakOutEA EURUSD,M1 : Cette fractale ascendante est0Down Fractal is1.3664
2013.03.26 17:45:17 2013.02.01 18:04 BreakOutEA EURUSD,M1 : Cette fractale ascendante est0Baisse la fractale est1.3664
2013.03.26 17:45:17 2013.02.01 18:03 BreakOutEA EURUSD,M1 : Cette fractale ascendante est0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 18:03 BreakOutEA EURUSD,M1 : This Up Fractal is0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 18:03 Tester : stop loss #110 à 1.36630 (1.36630 / 1.36661)
2013.03.26 17:45:17 2013.02.01 17:39 BreakOutEA EURUSD,M1 : ModifyError = 110 0
2013.03.26 17:45:17 2013.02.01 17:39 BreakOutEA EURUSD,M1 : modify #110 buy 0.09 EURUSD at 1.36761 sl : 1.36630 tp : 1.37230 ok
2013.03.26 17:45:17 2013.02.01 17:39 BreakOutEA EURUSD,M1 : ouvrir #110 acheter 0.09 EURUSD à 1.36761 ok
2013.03.26 17:45:17 2013.02.01 17:39 BreakOutEA EURUSD,M1 : Cette fractale ascendante est1.3673Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:39 BreakOutEA EURUSD,M1 : This Up Fractal is1.3673Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:39 BreakOutEA EURUSD,M1 : Cette fractale ascendante est1.3673Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:38 BreakOutEA EURUSD,M1 : Cette fractale ascendante est0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:38 BreakOutEA EURUSD,M1 : This Up Fractal is0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:38 BreakOutEA EURUSD,M1 : This Up Fractal is0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:38 BreakOutEA EURUSD,M1 : This Up Fractal is0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:37 BreakOutEA EURUSD,M1 : This Up Fractal is0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:37 BreakOutEA EURUSD,M1 : This Up Fractal is0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:37 BreakOutEA EURUSD,M1 : Cette fractale ascendante est0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:36 BreakOutEA EURUSD,M1 : This Up Fractal is0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:36 BreakOutEA EURUSD,M1 : This Up Fractal is0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:36 BreakOutEA EURUSD,M1 : This Up Fractal is0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:35 BreakOutEA EURUSD,M1 : This Up Fractal is0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:35 BreakOutEA EURUSD,M1 : Cette fractale ascendante est0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:35 BreakOutEA EURUSD,M1 : This Up Fractal is0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:35 BreakOutEA EURUSD,M1 : This Up Fractal is0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:34 BreakOutEA EURUSD,M1 : This Up Fractal is0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:34 BreakOutEA EURUSD,M1 : This Up Fractal is0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:34 BreakOutEA EURUSD,M1 : This Up Fractal is0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:34 BreakOutEA EURUSD,M1 : This Up Fractal is0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:33 BreakOutEA EURUSD,M1 : Cette fractale ascendante est0Down Fractal is1.367
2013.03.26 17:45:17 2013.02.01 17:33 BreakOutEA EURUSD,M1 : Cette fractale ascendante est0Down Fractal is1.367
2013.03.26 17:45:17 2013.02.01 17:33 BreakOutEA EURUSD,M1 : Cette fractale ascendante est0Down Fractal is1.367
2013.03.26 17:45:17 2013.02.01 17:33 BreakOutEA EURUSD,M1 : Cette fractale ascendante est0Down Fractal is1.367
2013.03.26 17:45:17 2013.02.01 17:32 BreakOutEA EURUSD,M1 : Cette fractale ascendante est0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:32 BreakOutEA EURUSD,M1 : Cette fractale ascendante est0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:32 BreakOutEA EURUSD,M1 : Cette fractale ascendante est0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:31 BreakOutEA EURUSD,M1 : Cette fractale ascendante est1.3675Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:31 BreakOutEA EURUSD,M1 : Cette fractale ascendante est1.3675Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:31 BreakOutEA EURUSD,M1 : Cette fractale ascendante est1.3675Fractale descendante est0
2013.03.26 17:45:17 2013.02.01 17:31 BreakOutEA EURUSD,M1 : Cette fractale ascendante est1.3675Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:30 BreakOutEA EURUSD,M1 : Cette fractale ascendante est0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:30 BreakOutEA EURUSD,M1 : This Up Fractal is0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:30 BreakOutEA EURUSD,M1 : This Up Fractal is0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:29 BreakOutEA EURUSD,M1 : Cette fractale ascendante est0Down Fractal is1.367
2013.03.26 17:45:17 2013.02.01 17:28 BreakOutEA EURUSD,M1 : Cette fractale ascendante est0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:28 BreakOutEA EURUSD,M1 : Cette fractale ascendante est0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:28 BreakOutEA EURUSD,M1 : This Up Fractal is0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:27 BreakOutEA EURUSD,M1 : This Up Fractal is0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:27 BreakOutEA EURUSD,M1 : This Up Fractal is0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:27 BreakOutEA EURUSD,M1 : This Up Fractal is0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:27 BreakOutEA EURUSD,M1 : This Up Fractal is0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:26 BreakOutEA EURUSD,M1 : This Up Fractal is0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:26 BreakOutEA EURUSD,M1 : This Up Fractal is0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:26 BreakOutEA EURUSD,M1 : This Up Fractal is0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:26 BreakOutEA EURUSD,M1 : This Up Fractal is0Down Fractal is0
2013.03.26 17:45:17 2013.02.01 17:25 BreakOutEA EURUSD,M1 : Cette fractale ascendante est1.368Fractale descendante est0
2013.03.26 17:45:17 2013.02.01 17:25 BreakOutEA EURUSD,M1 : Cette fractale ascendante est1.368Fractale descendante est0
2013.03.26 17:45:17 2013.02.01 17:25 BreakOutEA EURUSD,M1 : Cette fractale ascendante est1.368Fractale descendante est0