2017年3月27日 星期一

MT4 Adeline_Complete.ex4

MT4 Adeline_Complete.ex4




//+------------------------------------------------------------------+
//| This MQL is generated by Expert Advisor Builder                  |
//|                http://sufx.core.t3-ism.net/ExpertAdvisorBuilder/ |
//|                                                                  |
//|  In no event will author be liable for any damages whatsoever.   |
//|                      Use at your own risk.                       |
//|                                                                  |
//|   Modified by Lucas Liew                                         |                                                                 
//|                                                                  |
//+------------------- DO NOT REMOVE THIS HEADER --------------------+

/*
-----

Hey guys,

I strongly encourage you stay in touch with our course updates
& new course launches (on Machine Learning, Data Science etc) by joining our mailing list.
This allows me to have a channel to keep in touch with you.
No spam, and you can unsubscribe anytime. =)

Link: http://eepurl.com/bVQiXr

After you sign up, we will send you our Ebook - "Black Algo Strategy Development Guide".
We are looking to create more ebooks/guides for you guys. Will send them to you via email once they
are out!

Cheers,
Lucas

-----
*/

/*
ADELINE ENTRY RULES:
Enter a long trade when SMA(10) crosses SMA(40) from bottom
Enter a short trade when SMA(10) crosses SMA(40) from top

ADELINE EXIT RULES:
Exit the long trade when SMA(10) crosses SMA(40) from top
Exit the short trade when SMA(10) crosses SMA(40) from bottom
30 pips hard stop (30pips from initial entry price)
Trailing stop of 30 pips

ADELINE POSITION SIZING RULE:
1 Lot
*/

#define SIGNAL_NONE 0
#define SIGNAL_BUY   1
#define SIGNAL_SELL  2
#define SIGNAL_CLOSEBUY 3
#define SIGNAL_CLOSESELL 4

#property copyright "Expert Advisor Builder"
#property link      "http://sufx.core.t3-ism.net/ExpertAdvisorBuilder/"

// TDL 5: Stops and Position Sizing

extern int MagicNumber = 12345;
extern bool SignalMail = False;
extern double Lots = 1.0;
extern int Slippage = 3;
extern bool UseStopLoss = True;
extern int StopLoss = 30;
extern bool UseTakeProfit = False;
extern int TakeProfit = 0;
extern bool UseTrailingStop = True;
extern int TrailingStop = 30;

int P = 1;
int Order = SIGNAL_NONE;
int Total, Ticket, Ticket2;
double StopLossLevel, TakeProfitLevel, StopLevel;

// To-Do-List (TDL) 1: Declare Variables
double sma10_1, sma10_2, sma40_1, sma40_2;

//+------------------------------------------------------------------+
//| Expert initialization function                                   |
//+------------------------------------------------------------------+
int init() {

       if (Digits == 5 || Digits == 3 || Digits == 1)P = 10; else P = 1; // To account for 5 digit brokers

       return(0);
}
//+------------------------------------------------------------------+
//| Expert initialization function - END                             |
//+------------------------------------------------------------------+
//+------------------------------------------------------------------+
//| Expert deinitialization function                                 |
//+------------------------------------------------------------------+
int deinit() {
       return(0);
}
//+------------------------------------------------------------------+
//| Expert deinitialization function - END                           |
//+------------------------------------------------------------------+
//+------------------------------------------------------------------+
//| Expert start function                                            |
//+------------------------------------------------------------------+
int start() {

       Total = OrdersTotal();
       Order = SIGNAL_NONE;

       //+------------------------------------------------------------------+
       //| Variable Setup                                                   |
       //+------------------------------------------------------------------+

       // TDL 2: Assign Values to variables

       sma10_1 = iMA(NULL, 0, 10, 0, MODE_SMA, PRICE_CLOSE, 1); // c
       sma10_2 = iMA(NULL, 0, 10, 0, MODE_SMA, PRICE_CLOSE, 2); // b
       sma40_1 = iMA(NULL, 0, 40, 0, MODE_SMA, PRICE_CLOSE, 1); // d
       sma40_2 = iMA(NULL, 0, 40, 0, MODE_SMA, PRICE_CLOSE, 2); // a


       StopLevel = MarketInfo(Symbol(), MODE_STOPLEVEL) + MarketInfo(Symbol(), MODE_SPREAD); // Defining minimum StopLevel

       if (StopLoss < StopLevel) StopLoss = StopLevel;
       if (TakeProfit < StopLevel) TakeProfit = StopLevel;

       //+------------------------------------------------------------------+
       //| Variable Setup - END                                             |
       //+------------------------------------------------------------------+

       //Check position
       bool IsTrade = False;

       for (int i = 0; i < Total; i++) {
              Ticket2 = OrderSelect(i, SELECT_BY_POS, MODE_TRADES);
              if (OrderType() <= OP_SELL &&  OrderSymbol() == Symbol() && OrderMagicNumber() == MagicNumber) {
                     IsTrade = True;
                     if (OrderType() == OP_BUY) {
                           //Close

                           //+------------------------------------------------------------------+
                           //| Signal Begin(Exit Buy)                                           |
                           //+------------------------------------------------------------------+

                           /* ADELINE EXIT RULES:
                           Exit the long trade when SMA(10) crosses SMA(40) from top
                           Exit the short trade when SMA(10) crosses SMA(40) from bottom
                           30 pips hard stop (30pips from initial entry price)
                           Trailing stop of 30 pips
                           */

                           // TDL 4: Code Exit Rules

                           if (sma10_2 > sma40_2 && sma40_1 >= sma10_1) Order = SIGNAL_CLOSEBUY// Rule to EXIT a Long trade

                                                                                                                                                  //+------------------------------------------------------------------+
                                                                                                                                                  //| Signal End(Exit Buy)                                             |
                                                                                                                                                  //+------------------------------------------------------------------+

                           if (Order == SIGNAL_CLOSEBUY) {
                                  Ticket2 = OrderClose(OrderTicket(), OrderLots(), Bid, Slippage, MediumSeaGreen);
                                  if (SignalMail) SendMail("[Signal Alert]""[" + Symbol() + "] " + DoubleToStr(Bid, Digits) + " Close Buy");
                                  IsTrade = False;
                                  continue;
                           }
                           //Trailing stop
                           if (UseTrailingStop && TrailingStop > 0) {
                                  if (Bid - OrderOpenPrice() > P * Point * TrailingStop) {
                                         if (OrderStopLoss() < Bid - P * Point * TrailingStop) {
                                                Ticket2 = OrderModify(OrderTicket(), OrderOpenPrice(), Bid - P * Point * TrailingStop, OrderTakeProfit(), 0, MediumSeaGreen);
                                                continue;
                                         }
                                  }
                           }
                     }
                     else {
                           //Close

                           //+------------------------------------------------------------------+
                           //| Signal Begin(Exit Sell)                                          |
                           //+------------------------------------------------------------------+

                           if (sma40_2 > sma10_2 && sma10_1 >= sma40_1) Order = SIGNAL_CLOSESELL// Rule to EXIT a Short trade

                                                                                                                                                   //+------------------------------------------------------------------+
                                                                                                                                                   //| Signal End(Exit Sell)                                            |
                                                                                                                                                   //+------------------------------------------------------------------+

                           if (Order == SIGNAL_CLOSESELL) {
                                  Ticket2 = OrderClose(OrderTicket(), OrderLots(), Ask, Slippage, DarkOrange);
                                  if (SignalMail) SendMail("[Signal Alert]""[" + Symbol() + "] " + DoubleToStr(Ask, Digits) + " Close Sell");
                                  IsTrade = False;
                                  continue;
                           }
                           //Trailing stop
                           if (UseTrailingStop && TrailingStop > 0) {
                                  if ((OrderOpenPrice() - Ask) > (P * Point * TrailingStop)) {
                                         if ((OrderStopLoss() > (Ask + P * Point * TrailingStop)) || (OrderStopLoss() == 0)) {
                                                Ticket2 = OrderModify(OrderTicket(), OrderOpenPrice(), Ask + P * Point * TrailingStop, OrderTakeProfit(), 0, DarkOrange);
                                                continue;
                                         }
                                  }
                           }
                     }
              }
       }

       //+------------------------------------------------------------------+
       //| Signal Begin(Entries)                                            |
       //+------------------------------------------------------------------+

       /* ADELINE ENTRY RULES:
       Enter a long trade when SMA(10) crosses SMA(40) from bottom
       Enter a short trade when SMA(10) crosses SMA(40) from top
       */

       // TDL 3: Code Entry Rules

       if (sma40_2 > sma10_2 && sma10_1 >= sma40_1) Order = SIGNAL_BUY// Rule to ENTER a Long trade

       if (sma10_2 > sma40_2 && sma40_1 >= sma10_1) Order = SIGNAL_SELL// Rule to ENTER a Short trade


                                                                                                                       //+------------------------------------------------------------------+
                                                                                                                       //| Signal End                                                       |
                                                                                                                       //+------------------------------------------------------------------+

                                                                                                                       //Buy
       if (Order == SIGNAL_BUY) {
              if (!IsTrade) {
                     //Check free margin
                     if (AccountFreeMargin() < (1000 * Lots)) {
                           Print("We have no money. Free Margin = ", AccountFreeMargin());
                           return(0);
                     }

                     if (UseStopLoss) StopLossLevel = Ask - StopLoss * Point * P; else StopLossLevel = 0.0;
                     if (UseTakeProfit) TakeProfitLevel = Ask + TakeProfit * Point * P; else TakeProfitLevel = 0.0;

                     Ticket = OrderSend(Symbol(), OP_BUY, Lots, Ask, Slippage, StopLossLevel, TakeProfitLevel, "Buy(#" + MagicNumber + ")", MagicNumber, 0, DodgerBlue);
                     if (Ticket > 0) {
                           if (OrderSelect(Ticket, SELECT_BY_TICKET, MODE_TRADES)) {
                                  Print("BUY order opened : ", OrderOpenPrice());
                                  if (SignalMail) SendMail("[Signal Alert]""[" + Symbol() + "] " + DoubleToStr(Ask, Digits) + " Open Buy");
                           }
                           else {
                                  Print("Error opening BUY order : ", GetLastError());
                           }
                     }
                     return(0);
              }
       }

       //Sell
       if (Order == SIGNAL_SELL) {
              if (!IsTrade) {
                     //Check free margin
                     if (AccountFreeMargin() < (1000 * Lots)) {
                           Print("We have no money. Free Margin = ", AccountFreeMargin());
                           return(0);
                     }

                     if (UseStopLoss) StopLossLevel = Bid + StopLoss * Point * P; else StopLossLevel = 0.0;
                     if (UseTakeProfit) TakeProfitLevel = Bid - TakeProfit * Point * P; else TakeProfitLevel = 0.0;

                     Ticket = OrderSend(Symbol(), OP_SELL, Lots, Bid, Slippage, StopLossLevel, TakeProfitLevel, "Sell(#" + MagicNumber + ")", MagicNumber, 0, DeepPink);
                     if (Ticket > 0) {
                           if (OrderSelect(Ticket, SELECT_BY_TICKET, MODE_TRADES)) {
                                  Print("SELL order opened : ", OrderOpenPrice());
                                  if (SignalMail) SendMail("[Signal Alert]""[" + Symbol() + "] " + DoubleToStr(Bid, Digits) + " Open Sell");
                           }
                           else {
                                  Print("Error opening SELL order : ", GetLastError());
                           }
                     }
                     return(0);
              }
       }

       return(0);
}
//+------------------------------------------------------------------+



沒有留言:

張貼留言

2023 Promox on Morefine N6000 16GB 512GB

2023 Promox on Morefine N6000 16GB 512GB Software Etcher 100MB (not but can be rufus-4.3.exe 1.4MB) Proxmox VE 7.4 ISO Installer (1st ISO re...