Price Data Components
Orders Execution
1
Views
0
Downloads
0
Favorites
[ea]2Bar trend_Ron_MT4_v01
/*-----------------------------+
| |
| Shared by www.Aptrafx.com |
| |
+------------------------------*/
//
// 2 Bar Trend
extern int ProfitMade=65;
extern int LossLimit=20;
extern double OCSpread=8;
// Bar handling
datetime bartime=0;
bool TradeAllowed=true;
int start()
{
double SL,TP;
double ocs=OCSpread*Point();
// bar counting
if(bartime!=Time[0])
{
bartime=Time[0];
TradeAllowed=true;
}
//rising
if ( Open[1]+ocs < Close[1] && Close[1] < Open[0] )
{
//buy
SL=Ask-( LossLimit*Point() );
TP=Ask+( ProfitMade*Point() );
OrderSend(Symbol(),OP_BUY,0.1,Ask,3,SL,TP,"2Bar",55555,White);
TradeAllowed=false;
}
//falling
if ( Open[1] > Close[1]+ocs && Close[1] > Open[0] )
{
//sell
SL=Ask+( LossLimit*Point() );
TP=Ask-( ProfitMade*Point() );
OrderSend(Symbol(),OP_SELL,0.1,Bid,3,SL,TP,"2Bar",55555,Red);
TradeAllowed=false;
}
} //start
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
---