Orders Execution
Indicators Used
1
Views
0
Downloads
0
Favorites
Profitability Reports
AUD/USD
Oct 2024 - Jan 2025
54.00 %
Total Trades
1310
Won Trades
0
Lost trades
0
Win Rate
0.00 %
Expected payoff
-1.46
Gross Profit
2242.50
Gross Loss
-4159.70
Total Net Profit
-1917.20
-100%
-50%
0%
50%
100%
GBP/USD
Oct 2024 - Jan 2025
44.00 %
Total Trades
1753
Won Trades
176
Lost trades
1577
Win Rate
0.10 %
Expected payoff
-1.84
Gross Profit
2484.30
Gross Loss
-5703.40
Total Net Profit
-3219.10
-100%
-50%
0%
50%
100%
PS2
//PIPSTALKER EA by tdion
int ticket1, ticket2, ticket3, ticket4, ticket5, ticket6, ticket7, ticket8;
double o, h, l, c;
extern int TP = 145;
extern int TP2 = 300;
extern int SL2 = 40;
extern int SL = 37;
extern int trigger = 55;
extern int trigger2 = 20;
double size;
double balance;
double balancehigh=0;
double oldbalance;
double height;
int start()
{
balance = AccountEquity();
if(balance>balancehigh)
balancehigh = balance;
//size=(MathRound(AccountEquity()/1000))/10;
size=0.1;
if((balance/balancehigh)>0.79)
{
//size =(MathRound(AccountEquity()/500))/10;
}
if(Open[0]!=o)
if(High[0]!=h)
if(Low[0]!=l)
if(Close[0]!=c)
{
o = Open[0];
h = High[0];
l = Low[0];
c = Close[0];
if((Close[1] - Open[1] > trigger*Point)||(Open[1] - Close[1] > trigger*Point))
if((iRSI(NULL,0,14,PRICE_CLOSE,1)<70)&&(iRSI(NULL,0,14,PRICE_CLOSE,1)>30))
{
ticket1=OrderSend(Symbol(),OP_BUY,size,Ask,3,Ask-SL*Point,Ask+TP*Point,NULL,0,0,Green);
ticket2=OrderSend(Symbol(),OP_SELL,size,Bid,3,Bid+SL*Point,Bid-TP*Point,NULL,0,0,Red);
}
if((Close[1] - Open[0] > trigger2*Point)||(Open[0] - Close[1] > trigger2*Point))
{
ticket3=OrderSend(Symbol(),OP_BUY,size,Ask,3,Ask-SL2*Point,Ask+TP2*Point,NULL,0,0,Green);
ticket4=OrderSend(Symbol(),OP_SELL,size,Bid,3,Bid+SL2*Point,Bid-TP2*Point,NULL,0,0,Red);
}
if((Low[2] < Low[1] - 25*Point)&&(Low[2] < Low[3] - 25*Point))
ticket5=OrderSend(Symbol(),OP_BUY,size,Ask,3,Ask-30*Point,Ask+100*Point,NULL,0,0,Green);
if((High[2] > High[1] + 25*Point)&&(High[2] > High[3] + 25*Point))
ticket6=OrderSend(Symbol(),OP_SELL,size,Bid,3,Bid+30*Point,Bid-100*Point,NULL,0,0,Green);
if(MathAbs(Low[2] - Low[1]) < Point*2)
if(Low[1] < Close[1] - Point*45)
ticket1=OrderSend(Symbol(),OP_BUY,size,Ask,3,Ask-50*Point,Ask+150*Point,NULL,0,0,Green);
if(MathAbs(High[2] - High[1]) < Point*2)
if(High[1] > Close[1] + Point*45)
ticket1=OrderSend(Symbol(),OP_SELL,size,Bid,3,Bid+50*Point,Bid-150*Point,NULL,0,0,Green);
}
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
---