量化交易系统

MT4-Time Range Breakout Mt4

  • 型号:
Main Image
Features of Time Range Breakout EA:
  • Request to donate 10% of Profit to all users in my paypal account @priyankald
  • This Type of EA sold in this market more than 500 USD, But as a genuine programmer I have make it free for all users.
  • Source Code @ 200 USDT .
  • You can reach me on Telegram at t.me/chittaranjankld for purchage source code only.
  • This is fully Automated Trading Robot / Expert Advisor for MT5.
  • This EA is suitable for all pair.
  • Buy Stop Order place at Range High Price & Sell Stop Order place at Range Low Price.
  • Profit can be secured by Adjustable Trailing Stop .
  • Please Enter correct Risk Percent that you can afford from your total margin.
  • This EA can place Order at your own Magic Number .
  • Suitable for both beginners and experienced traders.
  • Please give me yours valuable comments.

Input parameters as below:

//--- input parameters

input string group1 = "==========Trade_Settings==========";

input string            BotName           = "Time Range Breakout";

input bool              Buy_Trade         = true;        // Buy Trade

input bool              Sell_Trade        = true;        // Sell Trade


input string group2 = "==========General_Settings==========";

input double            Lots              = 0.01;        // Volume

input double            InpRisk           = 2;           // Risk Percent (0 = Not used)

input int               TpPoints          = 200;         // TP Points

input int               SlPoints          = 200;         // SL Points

input ENUM_TIMEFRAMES   Timeframe         = PERIOD_M15;  // Timeframe

input int               MagicNumber       = 2091;        // MagicNumber

input bool              isComment         = false;       // Comment


input string group3 = "===========Advanced_Settings==========";

input bool              UseTrailingStop   = false;       // Trailing Stop

input int               TriggerPoints     = 20;          // Trigger Points

input int               NewSlPoints       = 5;           // New SL Points

input int               Max_spread        = 0;           // Maximum Spread (in Pips) (0 = floating)

input int               Max_slippage      = 10;          // Maximum slippage allow


input string group4 = "==========Range_Time_Settings==========";

input int               range_start_hour  = 0;           // Range Start Hour

input int               range_start_min   = 0;           // Range Start Min

input int               range_end_hour    = 12;          // Range End Hour

input int               range_end_min     = 0;           // Range End Min

input int               close_hour        = 16;          // Order Close Hour

input int               close_min         = 0;           // Order Close Min

input bool              Delete_Pos        = false;       // Close Positions


input string group5 = "==========Frequency_Settings==========";

input int               Max_Long_Trade    = 1;           // Maximum Long Trade per day

input int               Max_Short_Trade   = 1;           // Maximum Short Trade per day