EA not active on my manual trade
-
I create a martingale EA but the first entry is manual entry but after i made a manual entry, the EA not working as it should be. I also already set Magic Number to O but it did not work either. Below is my project link :
-
@aisar Try moving trail under a if trade block, as is when ever trades are within number limit TS wont work. Magic 0 is all that can be done to work on manually placed trades.
-
yes the problem is with my Trailing Stop block because when I remove it, the EA work well. already place it under If Trade block but did not work either. dont know where to place it to make it work.
-
@aisar Blocks 1 and 10 are being executed twice per open trade. Is that correct? Aren't they supposed to manage different trades?
-
@l-andorrà Thans for your reply. The idea is to have a different pipstep. for example, layer 1 to 5 the pipstep is 30pips, layer 6 to 8 the pipstep is 40pips and layer 8 and above pipstep is 50 pips. I dont know if do it right but when I remove Trailing Stop block, the EA work fine.
-
@aisar Then that is the problem. The 'trailing stop' block can only execute one only layer. Different layers would require different blocks or different specific structures.
-
@l-andorrà Thanks for the info. Btw can you suggest which block to use to solve my problem?
-
@aisar Well, you will need a combination of variables controling each layer. And each layer will need a 'For each trade' block on top. Certainly not a trivial project to implement.