Author: Copyright � 2006, Renato P. dos Santos
Profit factor:
0.23
Orders Execution
It automatically opens orders when conditions are reached
0 Views
0 Downloads
0 Favorites
FXAnt
//+------------------------------------------------------------------+
//|                                                        FXAnt.mq4 |
//|                           Copyright © 2006, Renato P. dos Santos |
//|                                            http://www.reniza.com |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2006, Renato P. dos Santos"
#property link      "http://www.reniza.com"

void deinit() {
   Comment("");
}

int start()
  {
   if (Period() < 30) {Comment("change to M30 or higher pls"); return(0); }
   if (MathMod(Minute(),Period()) >= 0.5*Period()) return(0);

   if ((High[0]-Low[0])>10*Point && Open[0]<(High[0]+Low[0])/2 && Ask < Open[0])
   OrderSend(Symbol(),OP_BUY,0.1,Ask,2,Ask-30*Point,Ask+20*Point,"FXAnt",0,0,Blue); 
   if ((High[0]-Low[0])>10*Point && Open[0]>(High[0]+Low[0])/2 && Bid > Open[0])
   OrderSend(Symbol(),OP_SELL,0.1,Bid,2,Bid+30*Point,Bid-20*Point,"FXAnt",0,0,Red); 
   return(0);
  }

Profitability Reports

USD/CAD Oct 2024 - Jan 2025
0.00
Total Trades 754
Won Trades 0
Lost trades 754
Win Rate 0.00 %
Expected payoff -2.07
Gross Profit 0.00
Gross Loss -1562.39
Total Net Profit -1562.39
-100%
-50%
0%
50%
100%
NZD/USD Oct 2024 - Jan 2025
0.38
Total Trades 2198
Won Trades 767
Lost trades 1431
Win Rate 34.90 %
Expected payoff -1.15
Gross Profit 1534.00
Gross Loss -4055.60
Total Net Profit -2521.60
-100%
-50%
0%
50%
100%
GBP/USD Oct 2024 - Jan 2025
0.00
Total Trades 0
Won Trades 0
Lost trades 0
Win Rate 0.0 %
Expected payoff 0.00
Gross Profit 0.00
Gross Loss 0.00
Total Net Profit 0.00
-100%
-50%
0%
50%
100%
AUD/USD Oct 2024 - Jan 2025
0.31
Total Trades 1983
Won Trades 0
Lost trades 0
Win Rate 0.00 %
Expected payoff -1.31
Gross Profit 1148.00
Gross Loss -3751.00
Total Net Profit -2603.00
-100%
-50%
0%
50%
100%

Comments