I have an existing EA that I would like to add some features to: The current EA can operate either as a simple indicator, or an auto-trading EA and generates buy / sell signals on the basis of candlestick patterns. When in auto-trading mode, the EA will only place an order once a valid buy/sell signal has been received, and the price has also moved "x" pips in the correct direction as a confirmation. I wish to add/modify the following features to the EA/Indicator. 1. Add support/resistance zones where the signal candlestick must be touching to generate a valid signal. e.g in the attached image Signal 1 (a buy arrow) has it's High value in Zone 1 so would initially be considered to be valid. Once a valid signal has been generated, it is not necessary for the confirmation move to stay within the zone. 10 resistance zones should be supported, with the upper and lower limits entered in the EA settings. When new values for the S/R zones are entered, the original rectangles should be removed. The rectangles should be drawn with a start time of 1 year ago, and an end time of +1 day. The colour of the rectangles shoudl be selectable in the input parameters. 2. Only allow buy signals if the price has entered from above a zone, and only allow sell signals if the price has entered from below the zone. ( so in the case of Signal 1, this would no longer be valid as the price entered from below the zone). The valid signals in the attached image are: 2, 4, 9. In order to debug the EA it would be useful to display the status of the "price from above/ price from below / out of zone". Whilst any part of a candle touches a zone it is considered to still have entered from the inital entry condition, i.e. the price enters from below before signal bar 1, and stays "from below" until the price leaves the zone on the candle after signal 3. The price enters Zone 2 from below at Signal 4, and then enters Zone 1 from above on the next bar. 3. Resolve an issue where the existing EA creates multiple buy/sell arrows on the chart for each valid signal. ( At the moment the EA can generate up to around 100 arrow objects on the chart at the same location) 4. Stop auto-trading at the end of each day at a pre-set time (variable time parameter required to select end of day). The EA should stop trading (not open new orders) at the end of each day, and only restart trading when an on-screen button ( or similar) is pressed at the start of the next trading day ( this is to allow me to change the zones as they only remain valid for 1 day ). 5. The EA should also draw a number of groups of lines that show various additional support and resistance lines. Data for each line woudl be manually entered, it is not necessary to calculate any values. The lines required should be labelled as follows: These lines are not used by the auto-trading feature, and are just visual. i) All round numbers from P1 to P2, in P3 increments, e.g. 5000 - 7000 in 100 increments. One definable line type and one colour for this group. ii) R3,R2,R1.One definable line type and one colour for this group. iii) Pivot. One definable line type and one colour for this group. iv) S1,S2,S3. One definable line type and one colour for this group. v) Support Lines. 6 support lines. One definable line type and one colour for this group. vi) Resistance Lines. 6 resistance lines. One definable line type and one colour for this group.