Orders Execution
0
Views
0
Downloads
0
Favorites
Profitability Reports
AUD/USD
Oct 2024 - Jan 2025
24.00 %
Total Trades
5934
Won Trades
0
Lost trades
0
Win Rate
0.00 %
Expected payoff
-0.82
Gross Profit
1531.30
Gross Loss
-6369.00
Total Net Profit
-4837.70
-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%
NZD/USD
Oct 2024 - Jan 2025
1.00 %
Total Trades
5093
Won Trades
91
Lost trades
5002
Win Rate
0.02 %
Expected payoff
-1.95
Gross Profit
54.60
Gross Loss
-10002.90
Total Net Profit
-9948.30
-100%
-50%
0%
50%
100%
FXAnt_001
//+------------------------------------------------------------------+
//| 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-20*Point,Ask+6*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+20*Point,Bid-6*Point,"FXAnt",0,0,Red);
return(0);
}
Comments
Markdown Formatting Guide
# H1
## H2
### H3
**bold text**
*italicized text*
[title](https://www.example.com)

`code`
```
code block
```
> blockquote
- Item 1
- Item 2
1. First item
2. Second item
---