Job order to develop two separate EA that trades based on Pipfinite Indicators in MT4. Indicators are Trend Laser (PTL), Breakout Analyser (BOA), Energy Beam. FIRST EA: TREND LASER TRADER Position Sizing: - must allow user to choose between fixed lot or money management -Fixed Lot - user can specify the lot size for each trade -MM - based on % balance -EA needs to project next lot size of orders on a panel on the chart -Use SL - allows user to set SL in points, 0 value indicates no SL - Take Profit - in points, 0 value indicates no TP -Max spread - user can specify max spread. if spread is higher than what is specified, signal is ignored I need a display panel on the chart that shows the followings (user can determine font size) 1. Balance 2. Equity 3. Lotsize 4. Current spread Rules for Opening a Trade 1. Trade Filters: (Any of these filters can be turned OFF, default setting should be ON) Filter 1 - EA will check the trend with Trend Laser in a higher timeframe which the user can select. Trades will only open in the same direction. Filter 2 -EA will check the strength of trend with Energy Beam. Buy trades will only open when energy beam is 8-0. Sell trades will only open if energy beam is 0-8. Opening of the trade - Enter BUY order when PTL shows a little green arrow and when conditions in Filter 1 and/or 2 are met (if they are ON), and vice versa Enter SELL order when PTL shows red arrow and when conditions in Filter 1 and/or 2 are met. Trade Size - When this happens, EA will open 3 orders, all of which are equal in size. Example 1 - if fixed lot set earlier is 0.01, then EA will open 3 orders of 0.01 lot each. If specified lot size is 0.02, then EA will open 3 orders of 0.02 lot each, so on and so forth. Example 2 - If MM is used, and EA calculates lot size of a number not possible to be divided by 3 evenly, then EA will divide the number by 3 and round down the lot size to the nearest 2 decimal. Say for example, based on MM the lot size is 0.05, then EA will divide 0.05 to 3 orders, resulting in 1.6 lot, so EA will round down this number and open 3 trades of 0.01 lot size each. Another example if 0.5 lot size, Ea will then divide this by 3 and get 0.167..so the nearest lot size after rounding down is 0.16 lot size each for all 3 orders. *reason why I need 3 order is I may intervene by manually closing partial trades, based on market condition. Exit Strategy -Close first order and second order when TP is met. If TP is set to 0, closing of trades shall be subject to PTL changing color. -Close third order and all remaining orders not closed if PTL changes color. Other requirements: EA should allows user to intervene manually in setting of SL and TP. Magic number can be set manually to allows EA as I need EA to run in many charts. EA should work with any timeframes available in MT4. EA should work on any type of account, any size of account with any broker SECOND EA: BREAKOUT ANALYSER TRADER Position Sizing: - must allow user to choose between fixed lot or money management -Fixed Lot - user can specify the lot size for each trade -MM - based on % balance -EA needs to project next lot size of orders on a panel on the chart -Use SL - allows user to set SL in pips or points, 0 value indicates no SL - Take Profit - in pips or points, 0 value indicates no TP -Max spread - user can specify max spread. if spread is higher than what is specified, signal is ignored I need a display panel on the chart that shows the followings (user can determine font size) 1. Balance 2. Equity 3. Lotsize 4. Current spread Rules for Opening a Trade Trade Filters: (Any of these filters can be turned OFF, default setting should be ON) Filter 1 - EA will check the trend with Trend Laser in a timeframe which the user can select. Trades will only open in the same direction. Any breakout in the opposite direction is simply ignored. Filter 2 -EA will check the strength of trend with Energy Beam. Buy trades will only open when energy beam is 8-0. Sell trades will only open if energy beam is 0-8. Opening of the Trade - Enter BUY order when PipFinite BOA shows a blue arrow and when conditions in Filter 1 and/or 2 are met, and vice versa Enter SELL order when BOA shows red arrow and when conditions in Filter 1 and/or 2 are met. Exit Strategy -Exit trade when TP is met. Other requirements: EA should allows user to intervene manually in setting of SL and TP. Magic number can be set manually to allows EA as I need EA to run in many charts. EA should work with any timeframes available in MT4. EA should work on any type of account, any size of account with any broker.