Author: Shevss
Profit factor:
0.42
Orders Execution
Checks for the total of open orders
Indicators Used
Bill Williams Accelerator/Decelerator oscillator
3 Views
0 Downloads
0 Favorites
RAVI+AO

#property copyright "Shevss"
#property link      "http://www.metaquotes.net"


extern int       per1=12;
extern int       per2=72;
extern double       uroven=0.3;
extern int tp=50;
extern int sl=50;
extern double lot=0.1;

double q1,q2,slb,sls,tpb,tps,ac1,ac2,ac0;

bool New_Bar;
int kup, prod, order;

int start()
  {

if (OrdersTotal()==1)
return;


New_Bar=false ;
Fun_New_Bar();  //                                                
if (New_Bar==false) 
return;
//___________________________________________________________________

q1= iCustom (NULL,0,"Ravi",per1,per2,0,1) ; 
q2= iCustom (NULL,0,"Ravi",per1,per2,0,2) ; 
ac1=iAC(NULL, 0 ,1);
ac2 =iAC(NULL, 0 ,2);
ac0 =iAC(NULL, 0 ,0);




//____________________________________________________________________

slb=Bid-sl*Point ; sls=Ask+sl*Point; tpb= Bid+tp*Point; tps= Ask-tp*Point;

//____________________________________________________________________
if   (   ac1>ac2 && ac2>0 && q1>q2 && q1> uroven )                                    
   {
       order =  OrderSend ( Symbol(), 0, lot, Ask, 3,slb,tpb );
   }
if (  ac1<ac2 && ac2<0 &&  q1<q2 && q1< -uroven   )                                      
   {
       order =  OrderSend ( Symbol(), 1, lot, Bid, 3,sls,tps);
    
   }
   return(0);
  }
//+------------------------------------------------------------------+


void Fun_New_Bar()
{

 static datetime New_Time=0;
 New_Bar=false;
 if(New_Time!=Time[0])
       {
        New_Time=Time[0];
        New_Bar=true; 
       }
}
//______________________________________________________


Profitability Reports

NZD/USD Oct 2024 - Jan 2025
0.14
Total Trades 94
Won Trades 48
Lost trades 46
Win Rate 51.06 %
Expected payoff -3.69
Gross Profit 57.60
Gross Loss -404.80
Total Net Profit -347.20
-100%
-50%
0%
50%
100%
GBP/USD Oct 2024 - Jan 2025
0.64
Total Trades 66
Won Trades 38
Lost trades 28
Win Rate 57.58 %
Expected payoff -1.04
Gross Profit 121.60
Gross Loss -190.40
Total Net Profit -68.80
-100%
-50%
0%
50%
100%
AUD/USD Oct 2024 - Jan 2025
0.49
Total Trades 90
Won Trades 0
Lost trades 0
Win Rate 0.00 %
Expected payoff -1.73
Gross Profit 151.20
Gross Loss -307.20
Total Net Profit -156.00
-100%
-50%
0%
50%
100%

Comments