Ok thanks anyways!!!!
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!!!
-
RE: Video Tutorial - Signals Dashboard EA [advanced] - looping Objects, arraysposted in Tutorials by Users
Hi, this doesn´t work for MT5. Gets array error. Could you tell me which lines I have to chage it? It seems that MT5 codes are different from MT4.
-
RE: Separate conditions on same EAposted in Questions & Answers
Hi,
I´m trying to do somethin and I don´t know if its possible. I want the EA to check several conditions and 1 signal, if that group of conditions did not work, I want it to go to another set of conditions and try them to see if they fit and so on. What is happening is if I set all sets of conditions it seem that it doesn´t chek them separetly but all together.
mqh5 on annex.
Thanks in advance.
......
SuperBovespa.mq5 -
RE: Add Costs to BEPposted in Questions & Answers
Hi,
Is there a possibility to add the Costs to a BEP? For example, let´s say that the cost os a operation are 2 PIPs, can I add something so the BEP point sets +2 PIPs instead of 0 PIPS?
Thanks.
-
RE: Change Contract on Metaposted in Questions & Answers
Thanks got it working.
Just another thing. Is the Break Even Point only breakeven on 0 or can it be add some pips so it covers expenses?
Thanks.
-
RE: Change Contract on Metaposted in Questions & Answers
Hi,
Is there a block that we have to add so instead of always changing through fxdreema the BUY/SELL contract number can be changed direct on MT5?
For example. Now I trade 5 contracts but as my NET Growth I want to change for 10, and I´d prefer to change direct on MT5 besides going to fxdreema code and changing it again.
Sorry for my english.
Thanks in advance.
-
RE: Help with EAposted in Questions & Answers
I´m back again,
Since we can´t make the MA over the Indicator, I´m trying some different things but I still can´t get it to work. I´ll try to summarize the basics of the ea:
Buy Order:
Candle Open > SSMA (Candle ID 0)
SSMA 3 X> SSMA 21(Candle ID 1)
RSI > SMA (Candle ID 1)
AD > SMA (Candle ID 1)Other orders are based as this one is. All of these conditions must me fullfilled to place the order. But when I run a back test two things happens:
- No orders are placed;
- The AD indicator doesn´t appear on the backtest.
Thanks in advance.
......
temp.mq5 -
RE: HELP MA on RSIposted in Questions & Answers
So this is what happening:
The robot must check these 3 basic conditions to trigger BUY/SELL:
Buy:
- EMA X> BB
- RSI > EMA (calculated over RSI NOT OVER CANDLES)
- MFI > EMA
Close Buy:
- EMA X< BB
- RSI < EMA
- MFI < EMA
Sell:
- EMA X< BB
- RSI < EMA (calculated over RSI NOT OVER CANDLES)
- MFI < EMA
Close Sell:
- EMA X> BB
- RSI > EMA
- MFI > EMA
So as you can see on the pic the robot its not respecting these conditions or its ignoring some.
How to I attach the scheme here so you can see how I set it up?
......
fxDreema.jpg
INDADX.mq5 -
RE: Preventing Entering A Trade On Same Candle of Exitposted in Questions & Answers
Add the ONCE PER BAR option or ONCE PER TIME and you chose over there.
-
RE: HELP MA on RSIposted in Questions & Answers
Hi, I´ve been trying to add MA on RSI but it doesnt work. If in codition I use RSI > MA the MA calculated its on the main graph and not on RSI. Is there a way to make this MA been calculated over RSI?
Thank you very much