High, Low, Higher EA Provide input for Magic number. Lot_Size_Percent_Equity = e.g 1%. For $100,000 account equity, if input is 1% then it uses 1 lot. 0.1% = 0.1 lot size. Lot size changes as account equity changes. Use market orders. Max_Draw_Down = e.g. 20%. If equity goes below 80% of last high equity, close all position and stop the EA. Start_Trade_GMT = e.g. 07:30 Stop_Trade_GMT = e.g. 14:00 Show all inputs and settings on LHS of chart. Show on RHS of chart one below each other: the actual BA distance and the profit or loss made. Overview of EA: Example below is for sell orders. But opposite is true for buy orders. Market makes a new high (A). Market makes a new low (B). Min_Distance_A_to_B = e.g. 6 pips Max_Distance_A_to_B = e.g. 30 pips Assume the actual distance from A to B is 10 pips. This distance meets the minimum 6 pips and maximum 30 pips input settings. After that the market goes back up, passes A and continues up to point C. When the distance B to A = distance A to C we enter a sell order at point C. ================================ Provide true/false option. Divide_Order_into_Parts. If set to true, we use these inputs: With this option set to true, we want to have a fixed grid of sell orders that are filled at set intervals before we get to point C. Note: the market may not rise all the way to point C, but we still want to get some sell order parts filled. This is why we use this option. Order_Parts = e.g. 3. If our lot size is calculated to be 1 lot, now we will have 3 sell orders of 3.33 lot each. If lot size is calculated to be 0.3 lot and we divide the order into 3 parts, we will have each sell order part = 0.1 lot. We can divide our lot into maximum of 10 parts. 0.01 is the smallest order part possible. Part_Spacing_Percent_BA = e.g. 20. So 20 percent of 10 pips is 2 pips. spacing between order parts will be 2 pips. If we don’t use order parts, we will always have the sell order at point C. However, if we divide the order into parts with 2 pips spacing between them, each sell order part will be in a fixed grid with the last sell order part at point C. Shift_Order_Grid_Percent_BA = e.g. 30 percent. Assume BA distance = 10 pips. 30 percent of 10 pips = 3 pips, so we will shift the grid with ALL the sell orders parts up (higher) by 3 pips. In this case the last order part will be 3 pips higher than point C. Provide option that the sell orders are only filled as the market goes down. i.e. the market price must go up past the place where the order part would be placed. Go_Past_Pips_to_Fill = e.g 3 pips. If this happens and the market goes down, only then is the order part filled at it’s grid location. If the market keeps going higher, there is no fill at that grid location. If set to 0, we don’t use this feature. ========================================= Take profit: TP is always at point A. ALL the sell order parts will close at the same TP. Stop Loss: SL_Percent_BA = e.g. 120. Distance B to A is 10 pips. 120 percent of 10 pips is 12 pips. So the SL will always be 12 pips away from the nearest sell order part. Another e.g. if input = 40, then SL will be 40 percent of 10 pips = 4 pips away. ALL sell order parts will SL at the same SL. If at any time between points B to C, if the market will rise faster than e.g. 3 pips within 10 seconds, cancel the set up. Do not enter any trades. BC_Pips_Cancel = e.g. 3. BC_Within_Seconds_Cancel = e.g. 10.