Price Data Components
Orders Execution
Miscellaneous
0
Views
0
Downloads
0
Favorites
Profitability Reports
AUD/USD
Oct 2024 - Jan 2025
60.00 %
Total Trades
112
Won Trades
0
Lost trades
0
Win Rate
0.00 %
Expected payoff
-1.70
Gross Profit
290.80
Gross Loss
-480.90
Total Net Profit
-190.10
-100%
-50%
0%
50%
100%
GBP/USD
Oct 2024 - Jan 2025
64.00 %
Total Trades
98
Won Trades
36
Lost trades
62
Win Rate
0.37 %
Expected payoff
-1.60
Gross Profit
276.80
Gross Loss
-434.00
Total Net Profit
-157.20
-100%
-50%
0%
50%
100%
NirvamanImaxT
//+-------------------------------------------------------------------------+
//| NirvamanImaxT.mq4 |
//| Copyright © 2008, MetaQuotes Software Corp. |
//| http://www.metaquotes.net |
//+-------------------------------------------------------------------------+
#property copyright "Copyright © 2009, Gabriel Jaime Mejía."
#property link "http://www.metaquotes.net"
//---- input parameters
extern double lots = 0.1;
extern int mn = 555;
static int prevtime = 0;
extern double tp = 100;
extern double sl = 50;
extern double periodos=13;
extern int tiempoCierre=15000;
extern int TrailingStop=0;
int StartHour=22;
int EndHour=2;
int BrokerTimeZone=0;
/*+-------------------------------------------------------------------+
| iMAX3alert Parameters |
+-------------------------------------------------------------------+*/
double basura=0;
double iman=0;
/*+-------------------------------------------------------------------+
| iMAX3alert Main cycle |
+-------------------------------------------------------------------+*/
int start()
{
if (Time[0] == prevtime) return(0);
prevtime = Time[0];
if (! IsTradeAllowed()) {
again();
return(0);
}
//----------------------------------------cerrando orden abierta despues de la primera barra
int total = OrdersTotal();
for (int i = 0; i < total; i++) {
OrderSelect(i, SELECT_BY_POS, MODE_TRADES);
if (OrderSymbol() == Symbol() && OrderMagicNumber() == mn)
{
//-------------------------------------------------------------------------
if(TrailingStop>0)
{
if(OrderType()==OP_BUY)
if((Bid-OrderOpenPrice())>(Point*TrailingStop))
{
if(OrderStopLoss()>(Bid-Point*TrailingStop))
{
OrderModify(OrderTicket(),OrderOpenPrice(),Bid-Point*TrailingStop,OrderTakeProfit(),0,Green);
return(0);
}
}
}
//-------------------------------------------------------------------------
if(TrailingStop>0)
{
if(OrderType()==OP_SELL)
if((OrderOpenPrice()-Ask)>(Point*TrailingStop))
{
if((OrderStopLoss()>(Ask+Point*TrailingStop)))
{
OrderModify(OrderTicket(),OrderOpenPrice(),Ask+Point*TrailingStop,OrderTakeProfit(),0,Red);
return(0);
}
}
}
//--------------------------------------------------------------------------
if(TimeCurrent()-OrderOpenTime()>=tiempoCierre)
{
if(OrderType()==OP_BUY)
OrderClose(OrderTicket(),lots,MarketInfo(Symbol(),MODE_BID),3,GreenYellow);
if(OrderType()==OP_SELL)
OrderClose(OrderTicket(),lots,MarketInfo(Symbol(),MODE_ASK),3,GreenYellow);
}
else
{
return(0);
}
}
}
//----------------------------------------------------------------------------------------
int ticket = -1;
int perceptron = Supervisor();
int ha=0;
double buff0=0;
double buff1=0;
buff0=iCustom(NULL, 0, "heiken_ashi_smoothed",2,0);
buff1=iCustom(NULL, 0, "heiken_ashi_smoothed",3,0);
//buff0=iCustom(NULL, 0, "HA",2,0);
//buff1=iCustom(NULL, 0, "HA",3,0);
if(buff0>buff1)
ha=-1;
if(buff0<buff1)
ha=1;
//-----------------------------------------------------------------------------------------
double promedioEMA=iCustom(NULL, 0, "Moving Averages2",periodos,0,0);
//----------------------------------------------------------------------------------------
//double ema_high=iMA(NULL,0,20,0,MODE_LWMA,PRICE_HIGH,0);
//double ema_low=iMA(NULL,0,20,0,MODE_LWMA,PRICE_LOW,0);
//--------------------------------------------------------------------------------trailing
// check for trailing stop
// check for trailing stop
//----------------------------------------------------------No operar en este rango de horas
int h=TimeHour(TimeCurrent()-BrokerTimeZone);
if(!(h> StartHour && h<EndHour))
{
if ( perceptron > 0 && ha > 0 && Close[1]>promedioEMA) {
ticket = OrderSend(Symbol(), OP_BUY, lots, Ask,2, Bid - sl * Point, Bid + tp * Point, WindowExpertName(), mn, 0, Blue);
Alert("SEÑAL:"+Symbol());
if (ticket < 0) {
again();
}
}
if (perceptron < 0 && ha <0 && Close[1]<promedioEMA) {
ticket = OrderSend(Symbol(), OP_SELL, lots, Bid, 2, Ask + sl * Point, Ask - tp * Point, WindowExpertName(), mn, 0, Red);
Alert("SEÑAL:"+Symbol());
if (ticket < 0) {
again();
}
}
}
return(0);
//------------------------------------------------------------------------------
} // int start()
/*+-------------------------------------------------------------------+
| End iMAX3alert Main cycle |
+-------------------------------------------------------------------+*/
/*+-------------------------------------------------------------------+
| End iMAX3alert support functions |
+-------------------------------------------------------------------+*/
void again() {
prevtime = Time[1];
Sleep(30000);
}
/*+-------------------------------------------------------------------+
| supervisor encargado de determinar si se hace long o short |
+-------------------------------------------------------------------+*/
double Supervisor()
{
double iMAX0=iCustom(NULL, 0, "iMAX3alert1",4,0);
double iMAX1=iCustom(NULL, 0, "iMAX3alert1",5,0);
double iMAX01=iCustom(NULL, 0, "iMAX3alert1",4,1);
double iMAX11=iCustom(NULL, 0, "iMAX3alert1",5,1);
double b0=0;
double b1=0;
double r0=0;
double r1=0;
b0 = iMAX0;
b1 = iMAX01;
r0 = iMAX1;
r1 = iMAX11;
if(b0 > r0 && b1 < r1)
return(1);
if(b0 < r0 && b1 > r1)
return(-1);
}
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
---