Automated Trend Grid EA Entering a position at every Level This is my trading plan but I will place the inputs myself to get the EA to execute it. If Trade_Long = True Then if the price moves from lower level to the next higher level then buy N lots. If the price continues going up to the next level then buy another N lots and so on. The stop loss per each order is equal to X pips (defined by user input). Take profit would be the cumulative profit of all buying or selling positions for example at 4th Level Price (1140) as defined by user input. 4th Level ------------------------------------------------- price = 1140.00 3rd Level ------------------------------------------------- price = 1130.00 2nd Level ------------------------------------------------- price = 1120.00 1st Level ------------------------------------------------- price = 1110.00 Zero Level ------------------------------------------------ price = 1100.00 If Trade_Short = True then do the opposite of the long trades. Parameters Example: * Trade_Long = True or False; * Long_Order_Type = (Buy Stop or Buy Limit); * 1st_Long_Entry_Price = price defined by user; * Global_Long_TP = price defined by user such as 1140.00; * Trade_Short = True or False; * Short_Order_Type = (Sell Stop or Sell Limit); * 1st_Short_Entry_Price = price defined by user; * Global_Short_TP = price defined by user; * Step_Distance = this will be a distance between pending orders in the grid; * Stop_Loss = in pips per each order; * Lot_Size = defined by user; * Total_Orders_Number = number of pending orders you want to place on the chart for all sides together; * Slippage = 0; * ECN Broker = Choose True or false; * Replace lost orders = True; * Magic_Number = 0; * Order_Comment = GT; * The EA shall continue until reaching the profit target where it closes those trades reaching this target or being removed by the user where it deletes the PENDING orders only but does not delete current running trades.