fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. lguarda
    3. Posts
    L
    • Profile
    • Following 0
    • Followers 0
    • Topics 7
    • Posts 19
    • Best 0
    • Controversial 0
    • Groups 0

    Posts made by lguarda

    • RE: Modify Stops no working!!!!

      Ok thanks anyways!!!!

      posted in Questions & Answers
      L
      lguarda
    • RE: Modify Stops no working!!!!

      It´s for MetaTrader 5

      posted in Questions & Answers
      L
      lguarda
    • RE: Modify Stops no working!!!!

      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!!!

      posted in Questions & Answers
      L
      lguarda
    • RE: Modify Stops no working!!!!

      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.

      posted in Questions & Answers
      L
      lguarda
    • Modify Stops no working!!!!

      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.

      posted in Questions & Answers
      L
      lguarda
    • RE: MA CrossOver Condition

      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);}".

      posted in Questions & Answers
      L
      lguarda
    • RE: Video Tutorial - Signals Dashboard EA [advanced] - looping Objects, arrays

      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?

      posted in Tutorials by Users
      L
      lguarda
    • MA CrossOver Condition

      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.

      posted in Questions & Answers
      L
      lguarda
    • RE: Video Tutorial - Signals Dashboard EA [advanced] - looping Objects, arrays

      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

      posted in Tutorials by Users
      L
      lguarda
    • RE: Video Tutorial - Signals Dashboard EA [advanced] - looping Objects, arrays

      Funny thing. When I did on web builder it worked, but not on desktop version. Thanks anyways!!!

      posted in Tutorials by Users
      L
      lguarda
    • RE: Video Tutorial - Signals Dashboard EA [advanced] - looping Objects, arrays

      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.

      posted in Tutorials by Users
      L
      lguarda
    • RE: Separate conditions on same EA

      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

      posted in Questions & Answers
      L
      lguarda
    • RE: Add Costs to BEP

      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.

      posted in Questions & Answers
      L
      lguarda
    • RE: Change Contract on Meta

      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.

      posted in Questions & Answers
      L
      lguarda
    • RE: Change Contract on Meta

      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.

      posted in Questions & Answers
      L
      lguarda
    • RE: Help with EA

      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:

      1. No orders are placed;
      2. The AD indicator doesn´t appear on the backtest.

      Thanks in advance.

      ......
      temp.mq5

      posted in Questions & Answers
      L
      lguarda
    • RE: HELP MA on RSI

      So this is what happening:

      The robot must check these 3 basic conditions to trigger BUY/SELL:

      Buy:

      1. EMA X> BB
      2. RSI > EMA (calculated over RSI NOT OVER CANDLES)
      3. MFI > EMA

      Close Buy:

      1. EMA X< BB
      2. RSI < EMA
      3. MFI < EMA

      Sell:

      1. EMA X< BB
      2. RSI < EMA (calculated over RSI NOT OVER CANDLES)
      3. MFI < EMA

      Close Sell:

      1. EMA X> BB
      2. RSI > EMA
      3. 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

      posted in Questions & Answers
      L
      lguarda
    • RE: Preventing Entering A Trade On Same Candle of Exit

      Add the ONCE PER BAR option or ONCE PER TIME and you chose over there.

      posted in Questions & Answers
      L
      lguarda
    • RE: HELP MA on RSI

      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

      posted in Questions & Answers
      L
      lguarda
    • 1 / 1