Forum

Help daily profit

My EA has to stop trading if a certain daily profit amount is reached and starts trading on the next day again. How can I program

Order opening condition

Hello, can is possibol create this condition? If, within three seconds, from the open [0] there are 25 points, open position

Help ADX ea

Hi, I wish the system input was, for the long position: Se (DXP> DXM && DXP - DXM> 30.0000 * Point) And for the short position If (DXM> DXP && DXM - DXP> 30.0000 * Point) I can not set the distance between d + and d- can you help me? // ---------- example Buy if (d + intersection d-) +30 points Sell

Take-Profit

Hi, what instruction, can you use, to move the take-profit? example: Price 1.09660 takeprofit +20 pips Second position 1.09710 takeprofit + 20pips. The first position changes the take-profit, on the level of the second take-profit

order candel

hello, how can I say of the Expert no enter on the same candle if you take profit or stoploss? if(OrderOpenTime() > Time[0]) return(0); if(OrderCloseTime()> Time[0]) return(0); if(!IsTradeAllowed()) if it is incorrect, how can I write

Help, enter position.

Hello, I can not set the sales position. My expert enters long if high is greater than the n opening and sells low value if the opening is less than the value n. my code. if (( High [ 0 ] - Open [ 0 ]> 20 * Point )) return ( "buy" ); // buy signal if (( Low [ 0 ] - Open [ 0 ]> 10 * Point )) return (