Ok thanks anyways!!!!
Latest posts made by lguarda
-
RE: Modify Stops no working!!!!posted in Questions & Answers
Nope, there are no erros and no logs... As I said the only thing that comes into mind is that on Real Trading Account the Order doesn,t seem to creat a ticket number, and thus it seems that for the EA there are no order Openned!!!
-
RE: Modify Stops no working!!!!posted in Questions & Answers
The trade is oppenned normally for either Buy or Sell, what doesn´t work are the Close and Modify Stops, so the EA starts the trade but it doens´t close and it doesn´t modify the stops for current trade.
-
Modify Stops no working!!!!posted in Questions & Answers
Hi, I´m having a pretty weird bug and I can´t figure it out whta is happening. Well I´ve fullt built my EA and teste on BackTest and worked. I´ve also tested on a DEMO account and it also worked. But when I use the EA on a Real account I´m getting problems with Closing Trades and Modifying Stop Loss. On a Real account none of those works, there are no log or errors, it simple doesn´t work. The only thing I could figure it out that is different from Backtest and Demo account, is that on Real account when a Trade is openned by the EA it does not return Ticket Number, therefore I think it´s not returning the Order Data that the STOPS and CLOSES need to work.
-
RE: MA CrossOver Conditionposted in Questions & Answers
I know how the crossing works. That´s not what I meant. I meant that the YELLOW OUTPUT is not if the condition is wrong and it is if the OPPOSITE of the condition is TRUE. And that is not only for MA Crossover. It´s for all of the YELLOW OUTPUT conditions of all indicators....
In my head it should be IF the condition is TRUE pass ORANGE OUTPUT, IF the condition is FALSE pass the YELLOW OUTPUT.
The only way I figured out on how to correct it is mannually go to MQL Editor and change the OUTPUT string for "if (o2=true) {blockXX(yy);}" to "if (o1=false) {blockXX(yy);}".
-
RE: Video Tutorial - Signals Dashboard EA [advanced] - looping Objects, arraysposted in Tutorials by Users
Thanks miro, you´re amazing. I got it all working... There is only one more thing that would be perfect to do. Instead of manually adding pairs, is it possible that if I write the name of the pair ont the chart box that is created it auto reads it?
-
MA CrossOver Conditionposted in Questions & Answers
Hi, I´ve been struggling with this condition. As per say I thought that the condition would be if the crossover happens then goes to next and if not goes to the other condition. What happens is that the false is not if the crossover doesn´t happen and it is if the Right Operand crosses the Left Operand. Is there a way to do like I want to? thanks in advance.
-
RE: Video Tutorial - Signals Dashboard EA [advanced] - looping Objects, arraysposted in Tutorials by Users
Got stuck again
. I did almost everything, and some I had to change on mql5 editor, but the basics are ok. What I would like to do and can´t figured out how is to set a button on objchart to open a new chart with symbol and timeframe that I click on. Here is the full project shared/NNA81CLec -
RE: Video Tutorial - Signals Dashboard EA [advanced] - looping Objects, arraysposted in Tutorials by Users
Funny thing. When I did on web builder it worked, but not on desktop version. Thanks anyways!!!