DislikedHello, please anyone able to code this risk reward tool from Mql4 to Mql5? {file}Ignored

I will code your pivot EAs for no charge 25 replies
I will code your scalping EAs for no charge 163 replies
Oanda MT4 - Indicators and EAs not showing 2 replies
EAs and indicators relating to moutaki... 22 replies
InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply
QuoteDislikedExtent int A1 = 2; // SL pips from entry Extent int A2 = 0; // Price pips from entry to activate the A1
Extent int B1 = 3; Extent int B2 = 1; Extent int C1 = 4; Extent int C2 = 2;
// A1 < B1 < C1, A2 < B2 < C2 (just notes for u guys to understand the basic function of the EA, nothing to do with the question tho)
int start() {
if ( condition) {
// Move SL to A1 pips from the entry when price reached A2 pips from the entry
if ( condition) {
// Move SL to B1 pips from the entry when price reached B2 pips from the entry
if ( condition) {
// Move SL to C1 pips from the entry when price reached C2 pips from the entry
} return(0);
} return(0); } }
Disliked{quote} no longer working, apprecite if someone / or CJA give it a shot?Ignored
Disliked{quote} please i beg any master coder to help with this, or please kindly share if you have the mt5 version Master CJA please if you have time kindly deliver me from this pleaseIgnored
Disliked{quote} I rewrote most part for MT5 including button. Try out and let me know. {file} {image}Ignored
DislikedHi guys, does anyone know what code should use for the "if" condition code running only one time and stop for the second "if" running? Here is my basic codes structure: {quote} So basically, if I set numbers like the above when the A1 (2) was reached, the A2 (0) activates and moves my SL, nothing wrong with this phase, when the price continues to hit the B1 (3), SL one more time moves to B2 (1) pips, everything still fine, but then the market price suddenly drops to back to A1 (2), at this point, the A condition much stops running and the SL would...Ignored
Disliked...when the A1 (2) was reached, the A2 (0) activates and moves my SL...B1 (3), SL one more time moves to B2 (1) pips, everything still fine, but then the market price suddenly drops to back to A1 (2), at this point, the A condition much stops running and the SL would be B2 (1), but instead, one more time the SL moves back to A2 (0), again and again between A2 and B2. The same case has happened with the C condition. I want to add a code that when the A condition was already activated it much stop immediately, and only counted the B and C conditions,...Ignored