-
Notifications
You must be signed in to change notification settings - Fork 2
/
NO7.mq4
135 lines (123 loc) · 5.1 KB
/
NO7.mq4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
//+------------------------------------------------------------------+
//| BlackGhost.mq4 |
//| Strategiya muallifi: BlackGhost |
//| Dasturchi: Nematillo Ochilov |
//+------------------------------------------------------------------+
#property copyright "Nematillo Ochilov MQL4"
#property link "https://t.me/Nematillo_Ochilov"
extern double Lots=0.01; // AccountBalance()/1000
extern int TakeProfit=10000;
extern int StopLoss=100;
extern int MagicNumber=1;
//+------------------------------------------------------------------+
//| robotni ishga tushirish qismi |
//+------------------------------------------------------------------+
int init()
{
//----
Alert("Nematillo Ochilov tomonidan yaratilgan robot ishga tushmoqda");
//----
return(0);
}
//+------------------------------------------------------------------+
//|robot faol holatda |
//+------------------------------------------------------------------+
int start()
{
double TP=NormalizeDouble(TakeProfit,Digits);
// stop loss
double SL=NormalizeDouble(StopLoss,Digits);
// Stop-lossni hisoblash
double slb=NormalizeDouble(Ask-SL*Point,Digits);
double sls=NormalizeDouble(Bid+SL*Point,Digits);
double mslb=NormalizeDouble(Ask-NormalizeDouble(500,Digits)*Point,Digits);
double msls=NormalizeDouble(Bid+NormalizeDouble(500,Digits)*Point,Digits);
double tpb=NormalizeDouble(Ask+TP*Point,Digits);
double tps=NormalizeDouble(Bid-TP*Point,Digits);
double opb=NormalizeDouble(1000,Digits); //190
double ops=NormalizeDouble(1000,Digits);
double tslb=NormalizeDouble(OrderOpenPrice()+opb*Point,Digits);
double tsls=NormalizeDouble(OrderOpenPrice()-ops*Point,Digits);
double WPR0=iWPR(NULL,0,500,0);
double WPR1=iWPR(NULL,0,500,1);
double narx=MarketInfo(Symbol(),MODE_ASK); // hozirgi narx |
double SMA=iMA(NULL,0,22,8,0,0,0); // |
double TOP=OrderOpenPrice();
double TSL=OrderStopLoss();
//-------------------------------------------------------------------+
// savdo taktikasi
//-------------------------------------------------------------------+
Comment("Ushbu robotni katta real balansda sinab ko'rmang");
if (OrdersTotal()>0)
{//
for(int i=0;i<OrdersTotal();i++)
{
if (OrderSelect(i,SELECT_BY_POS)==true)
{
if (OrderSymbol()==Symbol()&&OrderMagicNumber()==MagicNumber)
{
if (OrderType()==OP_BUY)
{
if ((TOP > TSL) && (tslb<Ask))
{
if (!OrderModify(OrderTicket(),0,slb,OrderTakeProfit(),0,Aqua))
Print("OrderModify BUYda muammo: ",GetLastError());
//else
//return(0);
}
/* if (tslb<Ask)
{
if (!OrderModify(OrderTicket(),0,slb,OrderTakeProfit(),0,Aqua))
Print("OrderModify BUYda muammo: ",GetLastError());
} */
if ((WPR0 < -20) && (WPR1 > -20) && (narx < SMA))
{
if (!OrderClose(OrderTicket(),OrderLots(),Bid,3,Green))
Print("OrderClose BUYda muammo: ",GetLastError());
}
}
if (OrderType()==OP_SELL)
{Print("TOP ", TOP);Print("TSL ", TSL);Print("tsls ", tsls);Print("Bid ", Bid);Print("narx ", narx);Print("sls ", sls);
if ((TOP < TSL) && (tsls>Bid))
{
if (!OrderModify(OrderTicket(),0,sls,OrderTakeProfit(),0,Red))
Print("OrderModify BUYda muammo: ",GetLastError());
//else
//return(0);
}
/* if (tsls>Bid)
{
if (!OrderModify(OrderTicket(),0,sls,OrderTakeProfit(),0,Orange))
Print("OrderModify SELLda muammo: ",GetLastError());
} */
if ((WPR0 > -80) && (WPR1 < -80) && (narx > SMA))
{
if (!OrderClose(OrderTicket(),OrderLots(),Ask,3,Red))
Print("OrderClose SELLda muammo: ",GetLastError());
}
}
}
}
}
}
else if (OrdersTotal()<1)
{
if ((WPR0 > -80) && (WPR1 < -80))
{
if (narx > SMA)
{
if (!OrderSend(Symbol(),OP_BUY,Lots,Ask,3,slb,tpb,"NO savdo ",MagicNumber,0,Aqua))
Print("OrderSend BUYda muammo: ",GetLastError());
}
}
if ((WPR0 < -20) && (WPR1 > -20))
{
if (narx < SMA)
{
if (!OrderSend(Symbol(),OP_SELL,Lots,Bid,3,sls,tps,"NO savdo ",MagicNumber,0,Red))
Print("OrderSend SELLda muammo: ",GetLastError());
}
}
}
return(0);
}