fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. gery
    G
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 13
    • Best 2
    • Controversial 0
    • Groups 0

    gery

    @gery

    2
    Reputation
    18
    Profile views
    13
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    gery Unfollow Follow

    Best posts made by gery

    • RE: Is possible to use a mql5 indicator in an EA?

      @Abade69

      The indicator is this one:

      https:// www.mql5. com/en/market/product/57759 (delete spaces)

      I have changed the datatype of appliedPrice to ENUM_APPLIED_PRICE in the myIndicators section and assigned an integer variable to set the value.

      Now is backtesting much faster but still is not doing what I want and it's because of the indicator configuration, something is wrongly set yet. If you could show how to configure in the custom indicator section and then what values to write in parameters (if using 0,1,2... or "Close price"), I would really appreciate 🙂

      Thank you

      posted in Questions & Answers
      G
      gery
    • RE: Is possible to use a mql5 indicator in an EA?

      @Abade69

      Omg I can't thank you enough for the effort you did to help me... ❤

      Now it's working perfectly and the EA does what I wanted!

      I have tried to see by myself the number of buffers backtesting the indicator but I couldn't see it anywhere. Just in the "color" tab while attaching the indicator to a graph I could see 3 color outputs, nothing else. How did you do it?

      It would help me a lot for future developments and I hope that for the rest of the people too, so less people to bother you 🙂

      Is it also possible to make an EA from a paid indicator from mql5? Doing exactly the same like we did now?

      Thanks!

      posted in Questions & Answers
      G
      gery

    Latest posts made by gery

    • RE: Warning: Too short SL requested...

      @l-andorrà

      Maybe it could be modified in the generated mql code. Would you know what should be changed in order to accomplish my goal?

      Gràcies i una abraçada company 🙂

      @fxDreema Could please you check this topic and tell us if it would be possible to add a feature where we can decide if we want to add or not the spread in the SL? (if the SL is lower than spread)

      posted in Questions & Answers
      G
      gery
    • Warning: Too short SL requested...

      Hi everyone,

      I'm having the message "Warning: Too short SL requested..." when I backtest and set SL with lower pips than the spread but the EA automatically set the SL the same points as the spread. I have confirmed in backtests is not a broker issue as I have tried other HFT EA existing in the market and they correctly apply SL with lower points than spread.
      So maybe there is something that once translated to code it doesn't allow to set a very short SL but it would be nice that there is the option to choose if you want this rule to be applied or not, don't you think? Or maybe there is a way to do it but I don't know how?

      Thank you!

      Best regards

      posted in Questions & Answers
      G
      gery
    • Warning: Too short SL requested...

      Hi @fxDreema
      I'm having the same problem here as I want a SL with lower pips than the spread but the EA automatically set the SL the same points as the spread. I have confirmed in backtests is not a broker issue as I have tried other HFT EA existing in the market and they correctly apply SL with lower points than spread.
      So maybe there is something that once translated to code it doesn't allow to set a very short SL but it would be nice that there is the option to choose if you want this rule to be applied or not, don't you think?

      Thank you!

      posted in Questions & Answers
      G
      gery
    • RE: Copy SL/TP from one order to another specific order

      @l-andorrà

      Thank you for the recommendation!

      I have a problem with that fxblue copier and is that it keeps duplicating the trades till my account reaches the maximum lottage. Do you know if possible to configure it to open just one trade for each? I have read the configuration manual but I couldn't find anything.

      I found the way to limit the number of trades opened by the copier but that doesn't really work for me because if there is 2 trades to copy for example, it duplicates only for the first one but no the second or the rest as it reached the maximum trades allowed.

      Moltes gràcies veí 😉

      posted in Questions & Answers
      G
      gery
    • Copy SL/TP from one order to another specific order

      Hi everyone,

      I'm trying to develop an EA that opens the same position as the new orders that come from a signal provider but with the option to multiply the lottage.

      The thing is that I would like to add the option that, if the SL or TP from the original position is modified, do it also in the the duplicated position. Could you tell me if there is a way to do so?

      Thank you!

      posted in Questions & Answers
      G
      gery
    • RE: Is possible to use a mql5 indicator in an EA?

      @Abade69

      Omg I can't thank you enough for the effort you did to help me... ❤

      Now it's working perfectly and the EA does what I wanted!

      I have tried to see by myself the number of buffers backtesting the indicator but I couldn't see it anywhere. Just in the "color" tab while attaching the indicator to a graph I could see 3 color outputs, nothing else. How did you do it?

      It would help me a lot for future developments and I hope that for the rest of the people too, so less people to bother you 🙂

      Is it also possible to make an EA from a paid indicator from mql5? Doing exactly the same like we did now?

      Thanks!

      posted in Questions & Answers
      G
      gery
    • RE: Is possible to use a mql5 indicator in an EA?

      @Abade69

      The indicator is this one:

      https:// www.mql5. com/en/market/product/57759 (delete spaces)

      I have changed the datatype of appliedPrice to ENUM_APPLIED_PRICE in the myIndicators section and assigned an integer variable to set the value.

      Now is backtesting much faster but still is not doing what I want and it's because of the indicator configuration, something is wrongly set yet. If you could show how to configure in the custom indicator section and then what values to write in parameters (if using 0,1,2... or "Close price"), I would really appreciate 🙂

      Thank you

      posted in Questions & Answers
      G
      gery
    • RE: Is possible to use a mql5 indicator in an EA?

      @Abade69 enum error.png

      I'm getting this error when setting as integer the datatype and compiling... I've tried with 0 and 1 values with the same luck.

      posted in Questions & Answers
      G
      gery
    • RE: Is possible to use a mql5 indicator in an EA?

      @sktsec

      For example, for this indicator, I see on the left that 1st, 2nd and 4th parameter are data type integer. The 3rd one is double.

      indicator parameters.png

      The thing is that the second it's a selector and although it shows the variable as integer the values in the selector are strings. So I don't know what I have to set here as data type (when configuring custom indicator on fxdreema):

      custom indicator fxdreema.png

      posted in Questions & Answers
      G
      gery
    • RE: Is possible to use a mql5 indicator in an EA?

      @sktsec

      Thank you for your help!

      If the indicator has some parameter selectors (a list of strings) then the data type i should write would be string or another data type like enum?

      Best regards

      posted in Questions & Answers
      G
      gery