ea_daytripper_01

Author: Ron Thompson
Profit factor:
3.49
Orders Execution
It Closes Orders by itself It automatically opens orders when conditions are reached
2 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/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%
NZD/USD Jul 2025 - Sep 2025
0.01
Total Trades 238
Won Trades 16
Lost trades 222
Win Rate 6.72 %
Expected payoff -2.08
Gross Profit 3.40
Gross Loss -497.90
Total Net Profit -494.50
-100%
-50%
0%
50%
100%
GBP/USD Jul 2025 - Sep 2025
0.44
Total Trades 124
Won Trades 30
Lost trades 94
Win Rate 24.19 %
Expected payoff -0.87
Gross Profit 84.90
Gross Loss -192.60
Total Net Profit -107.70
-100%
-50%
0%
50%
100%
GBP/CAD Jul 2025 - Sep 2025
0.05
Total Trades 252
Won Trades 22
Lost trades 230
Win Rate 8.73 %
Expected payoff -2.74
Gross Profit 35.29
Gross Loss -725.49
Total Net Profit -690.20
-100%
-50%
0%
50%
100%
GBP/AUD Jul 2025 - Sep 2025
0.00
Total Trades 103
Won Trades 0
Lost trades 103
Win Rate 0.00 %
Expected payoff -17.11
Gross Profit 0.00
Gross Loss -1761.95
Total Net Profit -1761.95
-100%
-50%
0%
50%
100%
EUR/USD Jul 2025 - Sep 2025
0.07
Total Trades 138
Won Trades 25
Lost trades 113
Win Rate 18.12 %
Expected payoff -2.48
Gross Profit 24.50
Gross Loss -366.50
Total Net Profit -342.00
-100%
-50%
0%
50%
100%
AUD/USD Jul 2025 - Sep 2025
0.07
Total Trades 218
Won Trades 46
Lost trades 172
Win Rate 21.10 %
Expected payoff -0.87
Gross Profit 15.40
Gross Loss -206.00
Total Net Profit -190.60
-100%
-50%
0%
50%
100%
USD/JPY Jan 2025 - Jul 2025
63.58
Total Trades 425
Won Trades 408
Lost trades 17
Win Rate 96.00 %
Expected payoff 1.43
Gross Profit 619.23
Gross Loss -9.74
Total Net Profit 609.49
-100%
-50%
0%
50%
100%
USD/CHF Jan 2025 - Jul 2025
0.00
Total Trades 192
Won Trades 0
Lost trades 192
Win Rate 0.00 %
Expected payoff -2.93
Gross Profit 0.00
Gross Loss -563.40
Total Net Profit -563.40
-100%
-50%
0%
50%
100%

Comments