-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIncludeExample.mqh
executable file
·996 lines (863 loc) · 76.1 KB
/
IncludeExample.mqh
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
//+------------------------------------------------------------------+
//| IncludeExample.mqh |
//| Andrew Young |
//| http://www.easyexpertforex.com |
//+------------------------------------------------------------------+
#property copyright "Andrew Young"
#property link "http://www.easyexpertforex.com"
#include <stdlib.mqh>
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
double CalcMartingaleLotSize(int argMagicNumber,double argDDTolerence,double argLotSizeIncrement)
{
double unrealizedProfitTotal=0,lotSizeTotal=0,result=0;
int ErrorCode=0;
string ErrDesc= "";
string ErrLog = "";
string ErrAlert="";
RefreshRates();
//int x = TotalOrderCount(Symbol(),argMagicNumber);
//Alert("CalcMartingaleLotSize: Total order count for symbol ",Symbol()," is ",x);
for(int count=0;count<=OrdersTotal()-1;count++)
{
Alert("CalcMartingaleLotSize: count=",count,", OrdersTotal=",OrdersTotal());
bool selected=OrderSelect(count,SELECT_BY_POS);
if(selected==false)
{
ErrorCode=GetLastError();
ErrDesc=ErrorDescription(ErrorCode);
ErrAlert=StringConcatenate(Symbol()," Select order to count order - Error: ",ErrorCode,": ",ErrDesc);
Alert("CalcMartingaleLotSize: ",ErrAlert);
//string ErrLog = StringConcatenate("Ticket: ",argTicket);
//Print(ErrLog);
}
else
{
if(OrderSymbol()==Symbol() && OrderMagicNumber()==argMagicNumber)
{
unrealizedProfitTotal+=OrderProfit();
lotSizeTotal+=OrderLots();
Alert("CalcMartingaleLotSize: Magic number matched, count=",count,", OrdersTotal=",OrdersTotal(),", unealizedProfitTotal=",unrealizedProfitTotal,", lotSizeTotal=",lotSizeTotal);
}
}
Alert("CalcMartingaleLotSize: OrderSymbol()=",OrderSymbol(),", Symbol()=",Symbol());
Alert("CalcMartingaleLotSize: Adding all orders together, unealizedProfitTotal=",unrealizedProfitTotal,", lotSizeTotal=",lotSizeTotal);
}
double TickValue=MarketInfo(Symbol(),MODE_TICKVALUE);
if(Point==0.001 || Point==0.00001) TickValue*=10;
double lot_should_add=(unrealizedProfitTotal/TickValue)/argDDTolerence-lotSizeTotal;
Alert("CalcMartingaleLotSize: unrealizedProfitTotal=", unrealizedProfitTotal,", lotSizeTotal=",lotSizeTotal,", argDDTolerence=",argDDTolerence,", tick value=",TickValue,", hence additional number of lot should add is ",lot_should_add);
if(lot_should_add>0)
{
result=VerifyLotSize(lot_should_add);
Alert("CalcMartingaleLotSize: would suggest to place an add-up order with lot size of ",result);
}
else
{
Alert("CalcMartingaleLotSize: lot_should_add equal or smaller than 0 (may be losing?), should not place new add-up order.");
}
if(result>=VerifyLotSize(argLotSizeIncrement))
{
Alert("CalcMartingaleLotSize: suggested lot size of ",result," is LARGER than minimum increment requirement, SHOULD proceed to add order");
return(result);
}
else
{
Alert("CalcMartingaleLotSize: suggested lot size of ",result," is SMALLER than minimum increment requirement,should NOT proceed to add order");
return(0);
}
}
//Function to calculate lot size for the order based on :
// Dynamic: the specified equity percentage to account equity AND the SL pips
// Fixed: the specified fixed lot size
double CalcLotSize(bool argDynamicLotSize,double argEquityPercent,double argStopLoss,double argFixedLotSize)
{
double LotSize;
if(argDynamicLotSize==true && argStopLoss>0)
{
double RiskAmount= AccountEquity() *(argEquityPercent/100);
double TickValue = MarketInfo(Symbol(),MODE_TICKVALUE);
if(Point== 0.001|| Point == 0.00001) TickValue *= 10;
LotSize =(RiskAmount/argStopLoss)/TickValue;
}
else LotSize=argFixedLotSize;
return(LotSize);
}
// Function to avoid invalid lot size (too big or too small) entered to the order
double VerifyLotSize(double argLotSize)
{
if(argLotSize<MarketInfo(Symbol(),MODE_MINLOT))
{
Alert("Order lot size is too small, round up from ",argLotSize," lot to ",MarketInfo(Symbol(),MODE_MINLOT)," lot.");
argLotSize=MarketInfo(Symbol(),MODE_MINLOT);
}
else if(argLotSize>MarketInfo(Symbol(),MODE_MAXLOT))
{
Alert("Order lot size is too big, round down from ",argLotSize," lot to ",MarketInfo(Symbol(),MODE_MAXLOT)," lot.");
argLotSize=MarketInfo(Symbol(),MODE_MAXLOT);
}
if(MarketInfo(Symbol(),MODE_LOTSTEP)==0.1)
{
argLotSize=NormalizeDouble(argLotSize,1);
Alert("Lot rounded to ",argLotSize);
}
else
{
argLotSize=NormalizeDouble(argLotSize,2);
Alert("Lot rounded to ",argLotSize);
}
return(argLotSize);
}
// Function to open MARKET BUY order, and return ticket number for success open order, or -1 for failed open order
int OpenBuyOrder(string argSymbol,double argLotSize,int argSlippage,int argMagicNumber,string argComment="Buy Order")
{
int ErrorCode=0;
string ErrDesc= "";
string ErrLog = "";
string ErrAlert="";
while(IsTradeContextBusy()) Sleep(10); //To wait until process thread released
// Place Market Buy Order
int Ticket=OrderSend(argSymbol,OP_BUY,argLotSize,MarketInfo(argSymbol,MODE_ASK),argSlippage,0,0,argComment,argMagicNumber,0,Green);
Alert("OpenBuyOrder(): lot size=",argLotSize,", Ask=",MarketInfo(argSymbol,MODE_ASK),", slippage=",argSlippage,", comment=",argComment,", magicNumber=",argMagicNumber);
// Error Handling
if(Ticket==-1)
{
ErrorCode=GetLastError();
ErrDesc=ErrorDescription(ErrorCode);
ErrAlert=StringConcatenate(Symbol()," Open Buy Order - Error ",ErrorCode,": ",ErrDesc);
Alert(ErrAlert);
ErrLog=StringConcatenate("Bid: ",MarketInfo(argSymbol,MODE_BID)," Ask: ",MarketInfo(argSymbol,MODE_ASK)," Lots: ",argLotSize);
Print(ErrLog);
}
return(Ticket);
}
// Function to open MARKET SELL order, and return ticket number for success open order, or -1 for failed open order
int OpenSellOrder(string argSymbol,double argLotSize,int argSlippage,int argMagicNumber,string argComment="Sell Order")
{
int ErrorCode=0;
string ErrDesc= "";
string ErrLog = "";
string ErrAlert="";
while(IsTradeContextBusy()) Sleep(10);
// Place Sell Order
int Ticket=OrderSend(argSymbol,OP_SELL,argLotSize,MarketInfo(argSymbol,MODE_BID),argSlippage,0,0,argComment,argMagicNumber,0,Red);
Alert("OpenSellOrder(): lot size=",argLotSize,", Ask=",MarketInfo(argSymbol,MODE_BID),", slippage=",argSlippage,", comment=",argComment,", magicNumber=",argMagicNumber);
// Error Handling
if(Ticket==-1)
{
ErrorCode=GetLastError();
ErrDesc=ErrorDescription(ErrorCode);
ErrAlert=StringConcatenate(Symbol()," Open Sell Order - Error ",ErrorCode,": ",ErrDesc);
Alert(ErrAlert);
ErrLog=StringConcatenate("Bid: ",MarketInfo(argSymbol,MODE_BID)," Ask: ",MarketInfo(argSymbol,MODE_ASK)," Lots: ",argLotSize);
Print(ErrLog);
}
return(Ticket);
}
// Function to open BUY STOP order, and return ticket number for success open order, or -1 for failed open order
int OpenBuyStopOrder(string argSymbol,double argLotSize,double argPendingPrice,double argStopLoss,double argTakeProfit,int argSlippage,
int argMagicNumber,datetime argExpiration=0,string argComment="Buy Stop Order")
{
int ErrorCode=0;
string ErrDesc= "";
string ErrLog = "";
string ErrAlert="";
while(IsTradeContextBusy()) Sleep(10);
// Place Buy Stop Order
int Ticket=OrderSend(argSymbol,OP_BUYSTOP,argLotSize,argPendingPrice,argSlippage,argStopLoss,argTakeProfit,argComment,argMagicNumber,argExpiration,Green);
// Error Handling
if(Ticket==-1)
{
ErrorCode=GetLastError();
ErrDesc=ErrorDescription(ErrorCode);
ErrAlert=StringConcatenate(Symbol()," Open Buy Stop Order - Error ",ErrorCode,": ",ErrDesc);
Alert(ErrAlert);
ErrLog=StringConcatenate("Ask: ",MarketInfo(argSymbol,MODE_ASK)," Lots: ",argLotSize,
" Price: ",argPendingPrice," Stop: ",argStopLoss," Profit: ",argTakeProfit," Expiration: ",TimeToStr(argExpiration));
Print(ErrLog);
}
return(Ticket);
}
// Function to open SELL STOP order, and return ticket number for success open order, or -1 for failed open order
int OpenSellStopOrder(string argSymbol,double argLotSize,double argPendingPrice,double argStopLoss,double argTakeProfit,int argSlippage,
int argMagicNumber,datetime argExpiration=0,string argComment="Sell Stop Order")
{
int ErrorCode=0;
string ErrDesc= "";
string ErrLog = "";
string ErrAlert="";
while(IsTradeContextBusy()) Sleep(10);
// Place Sell Stop Order
int Ticket=OrderSend(argSymbol,OP_SELLSTOP,argLotSize,argPendingPrice,argSlippage,argStopLoss,argTakeProfit,argComment,argMagicNumber,argExpiration,Red);
// Error Handling
if(Ticket==-1)
{
ErrorCode=GetLastError();
ErrDesc=ErrorDescription(ErrorCode);
ErrAlert=StringConcatenate(Symbol()," Open Sell Stop Order - Error ",ErrorCode,": ",ErrDesc);
Alert(ErrAlert);
ErrLog=StringConcatenate("Bid: ",MarketInfo(argSymbol,MODE_BID)," Lots: ",argLotSize,
" Price: ",argPendingPrice," Stop: ",argStopLoss," Profit: ",argTakeProfit," Expiration: ",TimeToStr(argExpiration));
Print(ErrLog);
}
return(Ticket);
}
// Function to open BUY LIMIT order, and return ticket number for success open order, or -1 for failed open order
int OpenBuyLimitOrder(string argSymbol,double argLotSize,double argPendingPrice,double argStopLoss,double argTakeProfit,int argSlippage,
int argMagicNumber,datetime argExpiration,string argComment="Buy Limit Order")
{
int ErrorCode=0;
string ErrDesc= "";
string ErrLog = "";
string ErrAlert="";
while(IsTradeContextBusy()) Sleep(10);
// Place Buy Limit Order
int Ticket=OrderSend(argSymbol,OP_BUYLIMIT,argLotSize,argPendingPrice,argSlippage,argStopLoss,argTakeProfit,argComment,argMagicNumber,argExpiration,Green);
// Error Handling
if(Ticket==-1)
{
ErrorCode=GetLastError();
ErrDesc=ErrorDescription(ErrorCode);
ErrAlert=StringConcatenate(Symbol()," Open Buy Limit Order - Error ",ErrorCode,": ",ErrDesc);
Alert(ErrAlert);
ErrLog=StringConcatenate("Bid: ",MarketInfo(argSymbol,MODE_BID)," Lots: ",argLotSize,
" Price: ",argPendingPrice," Stop: ",argStopLoss," Profit: ",argTakeProfit," Expiration: ",TimeToStr(argExpiration));
Print(ErrLog);
}
return(Ticket);
}
// Function to open SELL LIMIT order, and return ticket number for success open order, or -1 for failed open order.
int OpenSellLimitOrder(string argSymbol,double argLotSize,double argPendingPrice,double argStopLoss,double argTakeProfit,int argSlippage,
int argMagicNumber,datetime argExpiration,string argComment="Sell Limit Order")
{
int ErrorCode=0;
string ErrDesc= "";
string ErrLog = "";
string ErrAlert="";
while(IsTradeContextBusy()) Sleep(10);
// Place Sell Limit Order
int Ticket=OrderSend(argSymbol,OP_SELLLIMIT,argLotSize,argPendingPrice,argSlippage,argStopLoss,argTakeProfit,argComment,argMagicNumber,argExpiration,Red);
// Error Handling
if(Ticket==-1)
{
ErrorCode=GetLastError();
ErrDesc=ErrorDescription(ErrorCode);
ErrAlert=StringConcatenate(Symbol()," Open Sell Stop Order - Error ",ErrorCode,": ",ErrDesc);
Alert(ErrAlert);
ErrLog=StringConcatenate("Ask: ",MarketInfo(argSymbol,MODE_ASK)," Lots: ",argLotSize,
" Price: ",argPendingPrice," Stop: ",argStopLoss," Profit: ",argTakeProfit," Expiration: ",TimeToStr(argExpiration));
Print(ErrLog);
}
return(Ticket);
}
//Function to return number of digit calculated for this currency pair. Not more useful then MarketInfo()
int DecimalPoint(string Currency)
{
int CalcDigits=(int)MarketInfo(Currency,MODE_DIGITS);
return(CalcDigits);
}
//Function to return correct pips value of this currency pair
double PipPoint(string Currency)
{
double CalcPoint;
int CalcDigits= (int)MarketInfo(Currency,MODE_DIGITS);
if(CalcDigits == 2|| CalcDigits == 3) CalcPoint = 0.01;
else if(CalcDigits==4 || CalcDigits==5) CalcPoint=0.0001;
return(CalcPoint);
}
//Function to return slippage, in PIPS, for this currency pair
int GetSlippage(string Currency,int SlippagePips)
{
int CalcSlippage;
int CalcDigits= (int) MarketInfo(Currency,MODE_DIGITS);
if(CalcDigits == 2|| CalcDigits == 4) CalcSlippage = SlippagePips;
else if(CalcDigits==3 || CalcDigits==5) CalcSlippage=SlippagePips*10;
return(CalcSlippage);
}
// Function to square a long position
bool CloseBuyOrder(string argSymbol,int argCloseTicket,int argSlippage)
{
int ErrorCode=0;
string ErrDesc= "";
string ErrLog = "";
string ErrAlert="";
bool Closed=false;
bool selected=OrderSelect(argCloseTicket,SELECT_BY_TICKET);
if(selected==false)
{
ErrorCode=GetLastError();
ErrDesc=ErrorDescription(ErrorCode);
ErrAlert=StringConcatenate(Symbol()," Select Buy Order - Error: ",ErrorCode,": ",ErrDesc);
Alert(ErrAlert);
ErrLog=StringConcatenate("Ticket: ",argCloseTicket);
Print(ErrLog);
}
if(selected && (OrderCloseTime()==0)) //No close time -> not a closed order
{
double CloseLots=OrderLots();
while(IsTradeContextBusy()) Sleep(10);
double ClosePrice=MarketInfo(argSymbol,MODE_BID); //Obtain latest market bid pricing. Long Ask Short Bid, close buy is a short action, hense use bid price
Closed=OrderClose(argCloseTicket,CloseLots,ClosePrice,argSlippage,Green);
if(Closed==false)
{
ErrorCode=GetLastError();
ErrDesc=ErrorDescription(ErrorCode);
ErrAlert=StringConcatenate(Symbol()," Close Buy Order - Error: ",ErrorCode,": ",ErrDesc);
Alert(ErrAlert);
ErrLog=StringConcatenate("Ticket: ",argCloseTicket," Bid: ",MarketInfo(argSymbol,MODE_BID));
Print(ErrLog);
}
}
return(Closed);
}
//Function to square a short position
bool CloseSellOrder(string argSymbol,int argCloseTicket,int argSlippage)
{
int ErrorCode=0;
string ErrDesc= "";
string ErrLog = "";
string ErrAlert="";
bool Closed=false;
bool selected=OrderSelect(argCloseTicket,SELECT_BY_TICKET);
if(selected==false)
{
ErrorCode=GetLastError();
ErrDesc=ErrorDescription(ErrorCode);
ErrAlert=StringConcatenate(Symbol()," Select Sell Order - Error: ",ErrorCode,": ",ErrDesc);
Alert(ErrAlert);
ErrLog=StringConcatenate("Ticket: ",argCloseTicket);
Print(ErrLog);
}
if(selected && (OrderCloseTime()==0))
{
double CloseLots=OrderLots();
while(IsTradeContextBusy()) Sleep(10);
double ClosePrice=MarketInfo(argSymbol,MODE_ASK);
Closed=OrderClose(argCloseTicket,CloseLots,ClosePrice,argSlippage,Red);
if(Closed==false)
{
ErrorCode=GetLastError();
ErrDesc=ErrorDescription(ErrorCode);
ErrAlert=StringConcatenate(Symbol()," Close Sell Order - Error: ",ErrorCode,": ",ErrDesc);
Alert(ErrAlert);
ErrLog=StringConcatenate("Ticket: ",argCloseTicket," Ask: ",MarketInfo(argSymbol,MODE_ASK));
Print(ErrLog);
}
}
return(Closed);
}
//Function to close a pending order (i.e. to delete an unexecuted order)
bool ClosePendingOrder(string argSymbol,int argCloseTicket)
{
int ErrorCode=0;
string ErrDesc= "";
string ErrLog = "";
string ErrAlert="";
bool Deleted=false;
bool selected=OrderSelect(argCloseTicket,SELECT_BY_TICKET);
if(selected==false)
{
ErrorCode=GetLastError();
ErrDesc=ErrorDescription(ErrorCode);
ErrAlert=StringConcatenate(Symbol()," Select pending Order - Error: ",ErrorCode,": ",ErrDesc);
Alert(ErrAlert);
ErrLog=StringConcatenate("Ticket: ",argCloseTicket);
Print(ErrLog);
}
if(selected && (OrderCloseTime()==0))
{
while(IsTradeContextBusy()) Sleep(10);
Deleted=OrderDelete(argCloseTicket,Red);
if(Deleted==false)
{
ErrorCode=GetLastError();
ErrDesc=ErrorDescription(ErrorCode);
ErrAlert=StringConcatenate(Symbol()," Close Pending Order - Error: ",ErrorCode,": ",ErrDesc);
Alert(ErrAlert);
ErrLog=StringConcatenate("Ticket: ",argCloseTicket," Bid: ",MarketInfo(argSymbol,MODE_BID)," Ask: ",MarketInfo(argSymbol,MODE_ASK));
Print(ErrLog);
}
}
return(Deleted);
}
// Function to return a buy SL price from provided open price
double CalcBuyStopLoss(string argSymbol,double argStopLoss,double argOpenPrice)
{
if(argStopLoss == 0) return(0);
double BuyStopLoss=argOpenPrice -(argStopLoss*PipPoint(argSymbol));
return(BuyStopLoss);
}
// Function to return a sell SL price from provided open price
double CalcSellStopLoss(string argSymbol,double argStopLoss,double argOpenPrice)
{
if(argStopLoss == 0) return(0);
double SellStopLoss=argOpenPrice+(argStopLoss*PipPoint(argSymbol));
return(SellStopLoss);
}
// Function to return a buy TP price from provided open price
double CalcBuyTakeProfit(string argSymbol,double argTakeProfit,double argOpenPrice)
{
if(argTakeProfit == 0) return(0);
double BuyTakeProfit=argOpenPrice+(argTakeProfit*PipPoint(argSymbol));
return(BuyTakeProfit);
}
// Function to return a sell TP price from provided open price
double CalcSellTakeProfit(string argSymbol,double argTakeProfit,double argOpenPrice)
{
if(argTakeProfit == 0) return(0);
double SellTakeProfit=argOpenPrice -(argTakeProfit*PipPoint(argSymbol));
return(SellTakeProfit);
}
//Function to verify provided upper stop level using latest market ask price
bool VerifyUpperStopLevel(string argSymbol,double argVerifyPrice,double argOpenPrice=0)
{
double StopLevel=MarketInfo(argSymbol,MODE_STOPLEVEL)*Point;
double OpenPrice= 0;
if(argOpenPrice== 0) OpenPrice = MarketInfo(argSymbol,MODE_ASK);
else OpenPrice = argOpenPrice;
double UpperStopLevel=OpenPrice+StopLevel;
bool StopVerify=false;
if(argVerifyPrice>UpperStopLevel) StopVerify=true;
else StopVerify=false;
return(StopVerify);
}
//Function to verify provided lower stop level using latest market bid price
bool VerifyLowerStopLevel(string argSymbol,double argVerifyPrice,double argOpenPrice=0)
{
double StopLevel=MarketInfo(argSymbol,MODE_STOPLEVEL)*Point;
double OpenPrice=0;
double LowerStopLevel=0;
bool StopVerify=false;
if(argOpenPrice== 0) OpenPrice = MarketInfo(argSymbol,MODE_BID);
else OpenPrice = argOpenPrice;
LowerStopLevel=OpenPrice-StopLevel;
if(argVerifyPrice<LowerStopLevel) StopVerify=true;
else StopVerify=false;
return(StopVerify);
}
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
double AdjustAboveStopLevel(string argSymbol,double argAdjustPrice,int argAddPips=0,double argOpenPrice=0)
{
double StopLevel=MarketInfo(argSymbol,MODE_STOPLEVEL)*Point;
double OpenPrice=0;
if(argOpenPrice== 0) OpenPrice = MarketInfo(argSymbol,MODE_ASK);
else OpenPrice = argOpenPrice;
double UpperStopLevel=OpenPrice+StopLevel;
double AdjustedPrice =0;
if(argAdjustPrice<=UpperStopLevel)
{
AdjustedPrice=UpperStopLevel+(argAddPips*PipPoint(argSymbol));
Alert("AdjustPrice is ",argAdjustPrice," which is smaller than UpperStopLevel ",UpperStopLevel,", upper stop level adjusted to ",AdjustedPrice);
}
else AdjustedPrice=argAdjustPrice;
return(AdjustedPrice);
}
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
double AdjustBelowStopLevel(string argSymbol,double argAdjustPrice,int argAddPips=0,double argOpenPrice=0)
{
double StopLevel=MarketInfo(argSymbol,MODE_STOPLEVEL)*Point;
double OpenPrice= 0;
if(argOpenPrice== 0) OpenPrice = MarketInfo(argSymbol,MODE_BID);
else OpenPrice = argOpenPrice;
double LowerStopLevel=OpenPrice-StopLevel;
double AdjustedPrice = 0;
if(argAdjustPrice>=LowerStopLevel)
{
AdjustedPrice=LowerStopLevel -(argAddPips*PipPoint(argSymbol));
Alert("AdjustPrice is ",argAdjustPrice," which is higher than LowerStopLevel ",LowerStopLevel,", lower stop level adjusted to ",AdjustedPrice);
}
else AdjustedPrice=argAdjustPrice;
return(AdjustedPrice);
}
// Function that add TP/SL to an opened order
bool AddStopProfit(int argTicket,double argStopLoss,double argTakeProfit)
{
int ErrorCode=0;
string ErrDesc= "";
string ErrLog = "";
string ErrAlert="";
bool selected=OrderSelect(argTicket,SELECT_BY_TICKET);
if(selected==false)
{
ErrorCode=GetLastError();
ErrDesc=ErrorDescription(ErrorCode);
ErrAlert=StringConcatenate(Symbol()," Select order to add Stop/Profit - Error: ",ErrorCode,": ",ErrDesc);
Alert(ErrAlert);
ErrLog=StringConcatenate("Ticket: ",argTicket);
Print(ErrLog);
}
double OpenPrice=OrderOpenPrice();
while(IsTradeContextBusy()) Sleep(10);
// Modify Order
bool TicketMod=OrderModify(argTicket,OrderOpenPrice(),argStopLoss,argTakeProfit,0);
// Error Handling
if(TicketMod==false)
{
ErrorCode=GetLastError();
ErrDesc=ErrorDescription(ErrorCode);
ErrAlert=StringConcatenate("Add Stop/Profit - Error ",ErrorCode,": ",ErrDesc);
Alert(ErrAlert);
ErrLog=StringConcatenate("Bid: ",MarketInfo(OrderSymbol(),MODE_BID)," Ask: ",MarketInfo(OrderSymbol(),MODE_ASK)," Ticket: ",argTicket," Stop: ",argStopLoss," Profit: ",argTakeProfit);
Print(ErrLog);
}
return(TicketMod);
}
// Function that return order count for a specified symbol and magic number
int TotalOrderCount(string argSymbol,int argMagicNumber)
{
int ErrorCode=0;
string ErrDesc= "";
string ErrLog = "";
string ErrAlert="";
int OrderCount=0;
Alert("OrdersTotal()=",OrdersTotal());
for(int Counter=0; Counter<=OrdersTotal()-1; Counter++)
{
bool selected=OrderSelect(Counter,SELECT_BY_POS);
if(selected==false)
{
ErrorCode=GetLastError();
ErrDesc=ErrorDescription(ErrorCode);
ErrAlert=StringConcatenate(Symbol()," Select order to count order - Error: ",ErrorCode,": ",ErrDesc);
Alert(ErrAlert);
//string ErrLog = StringConcatenate("Ticket: ",argTicket);
//Print(ErrLog);
}
else
{
if(OrderMagicNumber()==argMagicNumber && OrderSymbol()==argSymbol)
{
OrderCount++;
}
}
}
return(OrderCount);
}
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
int OrderCount(string argSymbol,int argMagicNumber,int argOrderType)
{
int ErrorCode=0;
string ErrDesc= "";
string ErrLog = "";
string ErrAlert="";
int OrderCount=0;
Alert("OrderCount(): OrdersTotal() is ",OrdersTotal());
if(OrdersTotal()<=0)
{
Alert("OrderCount(): There is no opened orders.");
}
else
{
for(int Counter=0; Counter<=OrdersTotal()-1; Counter++)
{
bool selected=OrderSelect(Counter,SELECT_BY_POS);
Alert("OrderCount(): OrderSelect() is ",selected);
if(selected==false)
{
ErrorCode=GetLastError();
ErrDesc=ErrorDescription(ErrorCode);
ErrAlert=StringConcatenate(Symbol()," Select order to count - Error: ",ErrorCode,": ",ErrDesc);
Alert(ErrAlert);
OrderCount=-1;
break;
//string ErrLog = StringConcatenate("Ticket: ",argTicket);
//Print(ErrLog);
}
else
{
if(OrderMagicNumber()==argMagicNumber && OrderSymbol()==argSymbol && OrderType()==argOrderType)
{
OrderCount++;
}
}
}
}
Alert("OrderCount(): argOrderType=",argOrderType," order count=",OrderCount," argMagicNumber=",argMagicNumber);
return(OrderCount);
}
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
int BuyMarketCount(string argSymbol,int argMagicNumber)
{
return(OrderCount(argSymbol,argMagicNumber,OP_BUY));
}
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
int SellMarketCount(string argSymbol,int argMagicNumber)
{
return(OrderCount(argSymbol,argMagicNumber,OP_SELL));
}
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
int BuyStopCount(string argSymbol,int argMagicNumber)
{
return(OrderCount(argSymbol,argMagicNumber,OP_BUYSTOP));
}
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
int SellStopCount(string argSymbol,int argMagicNumber)
{
return(OrderCount(argSymbol,argMagicNumber,OP_SELLSTOP));
}
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
int BuyLimitCount(string argSymbol,int argMagicNumber)
{
return(OrderCount(argSymbol,argMagicNumber,OP_BUYLIMIT));
}
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
int SellLimitCount(string argSymbol,int argMagicNumber)
{
return(OrderCount(argSymbol,argMagicNumber,OP_SELLLIMIT));
}
//+------------------------------------------------------------------+
//| Generic close all order function |
//+------------------------------------------------------------------+
void CloseAllOrders(string argSymbol,int argMagicNumber,int argSlippage,int argOrderType)
{
int ErrorCode=0;
string ErrDesc= "";
string ErrLog = "";
string ErrAlert="";
if(OrdersTotal()<=0)
{
Alert("CloseAllOrders(): No orders exist here, OrdersTotal()=",OrdersTotal());
}
else
{
for(int Counter=0; Counter<=OrdersTotal()-1; Counter++)
{
bool selected=OrderSelect(Counter,SELECT_BY_POS);
if(selected==false)
{
ErrorCode=GetLastError();
ErrDesc=ErrorDescription(ErrorCode);
ErrAlert=StringConcatenate(Symbol()," Order type =",argOrderType,", Select order to close all opened orders - Error: ",ErrorCode,": ",ErrDesc);
Alert(ErrAlert);
//string ErrLog = StringConcatenate("Ticket: ",argTicket);
//Print(ErrLog);
}
if(selected && OrderMagicNumber()==argMagicNumber && OrderSymbol()==argSymbol && OrderType()==argOrderType)
{
// Close Order
int CloseTicket=OrderTicket();
double CloseLots=OrderLots();
while(IsTradeContextBusy()) Sleep(10);
double ClosePrice= MarketInfo(argSymbol,MODE_ASK);
if(argOrderType==OP_BUY || argOrderType==OP_BUYLIMIT || argOrderType==OP_BUYSTOP)
{
ClosePrice=MarketInfo(argSymbol,MODE_BID);
}
else if(argOrderType==OP_SELL || argOrderType==OP_SELLLIMIT || argOrderType==OP_SELLSTOP)
{
ClosePrice=MarketInfo(argSymbol,MODE_ASK);
}
bool Closed=OrderClose(CloseTicket,CloseLots,ClosePrice,argSlippage,Red);
// Error Handling
if(Closed==false)
{
ErrorCode=GetLastError();
ErrDesc=ErrorDescription(ErrorCode);
ErrAlert=StringConcatenate("Close All Orders in order type =",argOrderType," - Error ",ErrorCode,": ",ErrDesc);
Alert(ErrAlert);
ErrLog=StringConcatenate("Bid: ",MarketInfo(argSymbol,MODE_BID)," ,Ask: ",MarketInfo(argSymbol,MODE_ASK)," Ticket: ",CloseTicket," Price: ",ClosePrice);
Print(ErrLog);
}
else Counter--;
}
}
}
}
// Function to close all opened buy orders in specific symbol, magic number and slippage constraint
void CloseAllBuyOrders(string argSymbol,int argMagicNumber,int argSlippage)
{
CloseAllOrders(argSymbol,argMagicNumber,argSlippage,OP_BUY);
}
// Function to close all opened sell orders in specific symbol, magic number and slippage constraint
void CloseAllSellOrders(string argSymbol,int argMagicNumber,int argSlippage)
{
CloseAllOrders(argSymbol,argMagicNumber,argSlippage,OP_SELL);
}
//+------------------------------------------------------------------------------------------+
//| Generic function to close all pending orders in same order type, magicnumbers and symbol |
//+------------------------------------------------------------------------------------------+
void CloseAllPendingOrders(string argSymbol,int argMagicNumber,int argOrderType)
{
int ErrorCode=0;
string ErrDesc= "";
string ErrLog = "";
string ErrAlert="";
if(OrdersTotal()==0)
{
Alert("CloseAllPendingOrders(): There are no any orders.");
}
else
{
for(int Counter=0; Counter<=OrdersTotal()-1; Counter++)
{
bool selected=OrderSelect(Counter,SELECT_BY_POS);
if(selected==false)
{
ErrorCode=GetLastError();
ErrDesc=ErrorDescription(ErrorCode);
ErrAlert=StringConcatenate(Symbol()," Select order to delete all existing pending orders - Error: ",ErrorCode,": ",ErrDesc);
Alert(ErrAlert);
//string ErrLog = StringConcatenate("Ticket: ",argTicket);
//Print(ErrLog);
}
if(selected && OrderMagicNumber()==argMagicNumber && OrderSymbol()==argSymbol && OrderType()==argOrderType)
{
// Delete Order
int CloseTicket=OrderTicket();
while(IsTradeContextBusy()) Sleep(10);
bool Closed=OrderDelete(CloseTicket,Red);
// Error Handling
if(Closed==false)
{
ErrorCode=GetLastError();
ErrDesc=ErrorDescription(ErrorCode);
ErrAlert=StringConcatenate("Delete All pending orders, order type=",argOrderType," - Error ",ErrorCode,": ",ErrDesc);
Alert(ErrAlert);
ErrLog=StringConcatenate("Bid: ",MarketInfo(argSymbol,MODE_BID)," Ask: ",MarketInfo(argSymbol,MODE_ASK)," Ticket: ",CloseTicket);
Print(ErrLog);
}
else Counter--;
}
}
}
}
// Function to delete all existing buy stop order specified by symbol and magic number
void CloseAllBuyStopOrders(string argSymbol,int argMagicNumber)
{
CloseAllPendingOrders(argSymbol,argMagicNumber,OP_BUYSTOP);
}
// Function to delete all existing sell stop orders specified by symbol and magic number
void CloseAllSellStopOrders(string argSymbol,int argMagicNumber)
{
CloseAllPendingOrders(argSymbol,argMagicNumber,OP_SELLSTOP);
}
// Function to delete all buy limit orders specified by symbol and magic number
void CloseAllBuyLimitOrders(string argSymbol,int argMagicNumber)
{
CloseAllPendingOrders(argSymbol,argMagicNumber,OP_BUYLIMIT);
}
// Function to delete all existing sell limit orders specified by symbol and magic number
void CloseAllSellLimitOrders(string argSymbol,int argMagicNumber)
{
CloseAllPendingOrders(argSymbol,argMagicNumber,OP_SELLLIMIT);
}
// Function to enable trailing stop for all buy order(s) specified by symbol and magic number
// argTrailingStop: pips of trailing stop
// argMinProfit: minimum pips of profits to trigger trailing stop behavior
void BuyTrailingStop(string argSymbol,double argTrailingStop,double argMinProfit,int argMagicNumber)
{
int ErrorCode=0;
string ErrDesc= "";
string ErrLog = "";
string ErrAlert="";
for(int Counter=0; Counter<=OrdersTotal()-1; Counter++)
{
bool selected=OrderSelect(Counter,SELECT_BY_POS);
if(selected==false)
{
ErrorCode=GetLastError();
ErrDesc=ErrorDescription(ErrorCode);
ErrAlert=StringConcatenate(Symbol()," Select order to set buy order trailing stop - Error: ",ErrorCode,": ",ErrDesc);
Alert(ErrAlert);
//string ErrLog = StringConcatenate("Ticket: ",argTicket);
//Print(ErrLog);
}
else
{
// Calculate Max Stop and Min Profit
double MaxStopLoss=MarketInfo(argSymbol,MODE_BID) -(argTrailingStop*PipPoint(argSymbol));
MaxStopLoss=NormalizeDouble(MaxStopLoss,(int)MarketInfo(OrderSymbol(),MODE_DIGITS));
double CurrentStop=NormalizeDouble(OrderStopLoss(),(int)MarketInfo(OrderSymbol(),MODE_DIGITS));
double PipsProfit= MarketInfo(argSymbol,MODE_BID)-OrderOpenPrice();
double MinProfit = argMinProfit * PipPoint(argSymbol);
// Modify Stop
if(OrderMagicNumber()==argMagicNumber && OrderSymbol()==argSymbol && OrderType()==OP_BUY && CurrentStop<MaxStopLoss && PipsProfit>=MinProfit)
{
bool Trailed=OrderModify(OrderTicket(),OrderOpenPrice(),MaxStopLoss,OrderTakeProfit(),0);
Alert("BuyTrailingStop modified the SL, Bid=",Bid,", SL=",MaxStopLoss,", TP=",OrderTakeProfit());
// Error Handling
if(Trailed==false)
{
ErrorCode=GetLastError();
ErrDesc=ErrorDescription(ErrorCode);
ErrAlert=StringConcatenate("Buy Trailing Stop - Error ",ErrorCode,": ",ErrDesc);
Alert(ErrAlert);
ErrLog=StringConcatenate("Bid: ",MarketInfo(argSymbol,MODE_BID)," Ticket: ",OrderTicket()," Stop: ",OrderStopLoss()," Trail: ",MaxStopLoss);
Print(ErrLog);
}
}
}
}
}
// Function to enable trailing stop for all sell order(s) specified by symbol and magic number
// argTrailingStop: pips of trailing stop
// argMinProfit: minimum pips of profits to trigger trailing stop behavior
void SellTrailingStop(string argSymbol,double argTrailingStop,double argMinProfit,int argMagicNumber)
{
int ErrorCode=0;
string ErrDesc= "";
string ErrLog = "";
string ErrAlert="";
for(int Counter=0; Counter<=OrdersTotal()-1; Counter++)
{
bool selected=OrderSelect(Counter,SELECT_BY_POS);
if(selected==false)
{
ErrorCode=GetLastError();
ErrDesc=ErrorDescription(ErrorCode);
ErrAlert=StringConcatenate(Symbol()," Select order to set sell order trailing stop - Error: ",ErrorCode,": ",ErrDesc);
Alert(ErrAlert);
//string ErrLog = StringConcatenate("Ticket: ",argTicket);
//Print(ErrLog);
}
else
{
// Calculate Max Stop and Min Profit
double MaxStopLoss=MarketInfo(argSymbol,MODE_ASK)+(argTrailingStop*PipPoint(argSymbol));
MaxStopLoss=NormalizeDouble(MaxStopLoss,(int)MarketInfo(OrderSymbol(),MODE_DIGITS));
double CurrentStop=NormalizeDouble(OrderStopLoss(),(int)MarketInfo(OrderSymbol(),MODE_DIGITS));
double PipsProfit= OrderOpenPrice()-MarketInfo(argSymbol,MODE_ASK);
double MinProfit = argMinProfit * PipPoint(argSymbol);
// Modify Stop
if(OrderMagicNumber()==argMagicNumber && OrderSymbol()==argSymbol && OrderType()==OP_SELL && (CurrentStop>MaxStopLoss || CurrentStop==0) && PipsProfit>=MinProfit)
{
bool Trailed=OrderModify(OrderTicket(),OrderOpenPrice(),MaxStopLoss,OrderTakeProfit(),0);
Alert("SellTrailingStop modified the SL, Ask=",Ask,", SL=",MaxStopLoss,", TP=",OrderTakeProfit());
// Error Handling
if(Trailed==false)
{
ErrorCode=GetLastError();
ErrDesc=ErrorDescription(ErrorCode);
ErrAlert=StringConcatenate("Sell Trailing Stop - Error ",ErrorCode,": ",ErrDesc);
Alert(ErrAlert);
ErrLog=StringConcatenate("Ask: ",MarketInfo(argSymbol,MODE_ASK)," Ticket: ",OrderTicket()," Stop: ",OrderStopLoss()," Trail: ",MaxStopLoss);
Print(ErrLog);
}
}
}
}
}
//
//// Function that set breakeven stop when profit meet to predefined level
//extern double BreakEvenProfit = 25; // Profit pips to achieve that trigger setting breakeven stop
//void
//+------------------------------------------------------------------+