ea_daytripper_01

Author: Ron Thompson
Profit factor:
2.95
Orders Execution
It Closes Orders by itself It automatically opens orders when conditions are reached
7 Views
0 Downloads
0 Favorites
ea_daytripper_01
/*-----------------------------+
|			       |
| Shared by www.Aptrafx.com    |
|			       |
+------------------------------*/

//+-------------------+
//| 1MA Expert        |
//+-------------------+
#property copyright "Ron Thompson"
#property link      "http://www.lightpatch.com/forex"

// User Input
extern double Lots = 0.1;
extern double MovingAvg=10;

// Global scope
double prevTime=0;


//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//|------------------------------------------------------------------|

int init()
  {
   return(0);
  }


//+------------------------------------------------------------------+
//| Custor indicator deinitialization function                       |
//+------------------------------------------------------------------+
int deinit()
  {
   return(0);
  }


//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+

int start()
  {

   bool    rising=false;
   bool   falling=false;

   if(AccountFreeMargin()<(1000*Lots)) {Print("We have no money");   return(0);}

   if (Open[2]<Open[1]<Open[0]) {rising=true;  falling=false;}
   if (Open[2]>Open[1]>Open[0]) {rising=true;  falling=false;}
   
   OrderClose(OrderTicket(),Lots,Ask,0,Red);
   if (rising)  
     {
      Print("DTBUY ",Ask);
      OrderSend(Symbol(),OP_BUY,Lots,Ask,3,0,0,"1MA Buy",11123,0,White);
     }
   if (falling)
     {
      Print("DTSELL ",Bid);
      OrderSend(Symbol(),OP_SELL,Lots,Bid,3,0,0,"1MA Sell",11321,0,Red);
     }

   return(0);
  }

Profitability Reports

USD/CAD Jul 2025 - Sep 2025
5.25
Total Trades 203
Won Trades 170
Lost trades 33
Win Rate 83.74 %
Expected payoff 0.59
Gross Profit 148.35
Gross Loss -28.27
Total Net Profit 120.08
-100%
-50%
0%
50%
100%
NZD/USD Jul 2025 - Sep 2025
0.01
Total Trades 242
Won Trades 18
Lost trades 224
Win Rate 7.44 %
Expected payoff -1.37
Gross Profit 2.50
Gross Loss -334.50
Total Net Profit -332.00
-100%
-50%
0%
50%
100%
GBP/USD Jul 2025 - Sep 2025
0.14
Total Trades 122
Won Trades 24
Lost trades 98
Win Rate 19.67 %
Expected payoff -2.26
Gross Profit 46.70
Gross Loss -322.10
Total Net Profit -275.40
-100%
-50%
0%
50%
100%
GBP/CAD Jul 2025 - Sep 2025
0.00
Total Trades 190
Won Trades 0
Lost trades 190
Win Rate 0.00 %
Expected payoff -15.13
Gross Profit 0.00
Gross Loss -2875.02
Total Net Profit -2875.02
-100%
-50%
0%
50%
100%
GBP/AUD Jul 2025 - Sep 2025
0.63
Total Trades 261
Won Trades 89
Lost trades 172
Win Rate 34.10 %
Expected payoff -0.84
Gross Profit 367.61
Gross Loss -587.60
Total Net Profit -219.99
-100%
-50%
0%
50%
100%
EUR/USD Jul 2025 - Sep 2025
0.00
Total Trades 270
Won Trades 0
Lost trades 270
Win Rate 0.00 %
Expected payoff -4.54
Gross Profit 0.00
Gross Loss -1226.60
Total Net Profit -1226.60
-100%
-50%
0%
50%
100%
AUD/USD Jul 2025 - Sep 2025
7.98
Total Trades 232
Won Trades 191
Lost trades 41
Win Rate 82.33 %
Expected payoff 1.83
Gross Profit 484.30
Gross Loss -60.70
Total Net Profit 423.60
-100%
-50%
0%
50%
100%
USD/JPY Jul 2025 - Sep 2025
1.91
Total Trades 410
Won Trades 224
Lost trades 186
Win Rate 54.63 %
Expected payoff 0.55
Gross Profit 470.16
Gross Loss -246.62
Total Net Profit 223.54
-100%
-50%
0%
50%
100%
USD/CHF Jul 2025 - Sep 2025
0.00
Total Trades 191
Won Trades 0
Lost trades 191
Win Rate 0.00 %
Expected payoff -2.48
Gross Profit 0.00
Gross Loss -472.80
Total Net Profit -472.80
-100%
-50%
0%
50%
100%
USD/CAD Jul 2025 - Sep 2025
0.01
Total Trades 376
Won Trades 13
Lost trades 363
Win Rate 3.46 %
Expected payoff -1.63
Gross Profit 7.50
Gross Loss -618.98
Total Net Profit -611.48
-100%
-50%
0%
50%
100%

Comments