Required EA source codes are to be in MQL4 and MQL5. This means I would want the source codes for both MQL4 and MQL5. The MQL5 version will have to allow for multiple symbols to be traded in one chart. Trade_TimeFrame: M15 (selectable: M1, M5, M15, M30, H1, H4, D1, W1, MN) LookBack_Bars: 12 EA will open BuyStop and SellStop orders based on the lookback bars setting. For example, if LookBack_Bars is set to 12, then there will be 12 sets of BuyStop and SellStop orders at the highest (BuyStop) and lowest price (SellStop) points of the Trade_TimeFrame of M15. If StopOrders are not triggered, then oldest orders will be deleted to make way for newer orders. Re-Entry_Attempts: 3 Upon Stops orders triggered and closed out by TrailStops, Re-Entry_Attempts will be activated based the previous triggered Stops order price. For example, if the triggered BuyStop price is 1.24560 but stopped out by TrailStop later, then subsequent Re-Entry_Attempts will be reopened at the same price of 1.24560 again up to 3 times. Series_Stop_Loss: 50 (Percentage of Account Margin) All orders with the same symbol will be closed when losses hits Series_Stop_Loss levels. Series_Take_Profit: 20 (Percentage of Account Margin) All orders with the same symbol will be closed when profits hits Series_Take_Profit levels. Overall_Stop_Loss: 75 (Percentage of Account Margin) All orders will be closed when losses hits Overall_Stop_Loss levels. Overall_Take_Profit: 15 (Percentage of Account Margin) All orders will be closed when profits hits Overall_Take_Profit levels. ___Common Parameters___ Magic Number: 1234 Comments: High Low Price Trader 02 v1.0 Use_Money_Management: True of False //Option to Use Money Management for Lot Size Calculation or not. Default Lot Size: 0.01 // If Use_Money_Management is set to False Lot Size Settings: (According to account Equity Size; for example: if Equity = $1000, Order Lot Size = 0.01 Risk Settings: 2% Stop_Loss: 1000 (Points) Take_Profit: 1000 (Points) Break_Even: True of False Break_Even_Start: 66 (Points) Set_Break_Even: 11 (Points) //Set Stop_Loss to 11 points below Order Price in Profit Trail_Stop: True of False Trail_Stop_Start: 123 (Points) Trail_Stop_Stop: 66 (Points) //Set Stop_Loss to 66 points below Order Price in Profit Trail_Stop_Step: 1 (Points) //Set increments and follow Order Price in Profit Hidden_Stop_Orders: True of False //Option to conceal Stop Orders entry A BuyStop and SellStop line indicator is to be shown when Hidden_Stop_Orders is set to true. Hide_Stop_Loss: True of False //Option to conceal Stop Loss for opened orders Hide_Take_Profit: True of False //Option to conceal Take Profit for opened orders Hide_Break_Even: True of False //Option to conceal Break Even for opened orders Hide_Trail_Stop: True of False //Option to conceal Trailing Stop for opened orders A Buy and Sell line indicator is to be shown in chart when Hide_Stop_Loss & Hide_Take_Profit is set to true. ___Trading Time Control___ Trade_Start_Time_1: 01:05:00 Trade_End_Time_1: 05:59:30 Trade_Start_Time_2: 06:05:00 Trade_End_Time_2: 11:59:30 Trade_Start_Time_3: 12:05:00 Trade_End_Time_3: 17:59:30 Trade_Start_Time_4: 18:05:00 Trade_End_Time_4: 23:59:30 EA will only trade within these time windows. ___Indicator to be shown on Chart (Top left)___ ================= EA Name & Version ================= Account Balance: Account Equity: Use MM: Lot Size: Account Profit: Equity Percent: ________________________End________________________