Forum

Is there an EA which automatically enters trades at a given entry, SL and TP?

Hi everyone, I am currently just getting interested in EAs Is there an EA available in the market already, as follows: Opens a trade at a specified entry point, SL and TP, which the user sets manually The EA then automatically reenters the exact same trade if the SL is hit, for a certain period of

how to change account balance to account equity in a mt4 algo

HI i have an algo in which all trades are terminated when account balance is more than x or less than y how do i change this to account equity bool Filter_AB() { if(DISABLE_ALGO) { if(AccountBalance()>=ACCOUNTBALANCE1 || AccountBalance()<=ACCOUNTBALANCE2 ) {return false; } else {return