fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. roar
    3. Posts
    • Profile
    • Following 0
    • Followers 184
    • Topics 35
    • Posts 2406
    • Best 422
    • Controversial 6
    • Groups 0

    Posts made by roar

    • RE: Bug in Modify stops

      @ekanters you should include a test project that proves the issue.

      This test project has no problem with modify stops, so your error is probably somewhere else.
      https://fxdreema.com/shared/4mzi31ycb
      11928589-6118-44cd-b47b-e19575f41454-image.png

      posted in Bug Reports
      roar
      roar
    • RE: Easylanguage code

      I can't help much without seeing your code, but mql5 does have a similar Highest function.

      Important to note this function does not return the price value, it returns the candle ID, so you need to finally call iHigh() after getting the ID.

      https://www.mql5.com/en/docs/series/ihighest

      And since we are on Fxdreema, there's a dropdown menu option as well:

      cedb801c-1de4-487b-a939-ba0dc5fb9896-image.png

      posted in Questions & Answers
      roar
      roar
    • RE: Creating EA using .ex4 indicator

      @tmk1000 I get a different set of errors, but the main issue seems to be the enumerations.

      For example "Up arrow code" - it looks like "int" datatype in metatrader, but actually it is an enumeration because its value appears as a text string.

      To correct this, you need to setup up the enumerations, like this:

      enum up_arrowcodes{
      ball, //Ball
      dot, //Dot
      ...
      heavy_right_up //Heavy right up
      }
      

      For every enumerated setting in your indicator, and then change the datatype from "int" to "up_arrowcodes" and respectively for other settings.

      Another way is to skip the enumerations (because really they are just integers in a text disguise) and put the corresponding integer number to your setting, like number 8 for "Heavy right up" (count the enumeration list starting from 0).

      16393c0a-6d76-4092-b36c-962840981c1e-image.png

      posted in Bug Reports
      roar
      roar
    • RE: Break even difference

      @ekanters ok. I dont use that block myself, I find using simple true/false variables are more error-proof.

      Maybe that block inadvertently acts as a loop breaker, and since there is no reason to execute it on every loop iteration anyway, you should put the "Turn OFF blocks" after your loop (the yellow output).

      This is a valid bug for sure, but should be easy to avoid.

      posted in Questions & Answers
      roar
      roar
    • RE: Break even difference

      Well you have a "Turn OFF blocks" inside your loop. What blocks does it turn off? Hopefully not the loop blocks themselves?

      posted in Questions & Answers
      roar
      roar
    • RE: Creating EA using .ex4 indicator

      @tmk1000 I appreciate you waited until it placed 10000 copies to make your point đŸ˜„

      How did you apply the indicator in your project? This problem usually appears if you use the "Custom indicator" selection instead of "My Indicators".

      a0a6d5b7-4997-4368-91c9-d5932142e8e7-image.png

      posted in Bug Reports
      roar
      roar
    • RE: Candle Close selection rounds to nearest integer

      @l-andorrĂ  no point lol, accidentally left that there

      posted in Bug Reports
      roar
      roar
    • Candle Close selection rounds to nearest integer

      When using the Candle price selection in a different pair than the current chart, the result is rounded to nearest integer. I hope this gets fixed before too many users lose their mind troubleshooting their multi-currency projects (like I did lol).

      Tested on mql4.
      https://fxdreema.com/shared/wNcSJRJkd

      3d0d8f9d-19ca-4dee-a96a-b3f75b76a556-image.png

      a6c8e5d0-aa88-408c-a632-bcb3443e55c2-image.png

      posted in Bug Reports
      roar
      roar
    • RE: How to delete comments from the chart when EA is removed?

      @ProteinX if the comments are actual comments (done with Comment() function) you need to replace them by placing this to custom mql block:

      Comment("");

      For all objects, you can do this in custom mql block:

      ObjectsDeleteAll(0);

      posted in Questions & Answers
      roar
      roar
    • RE: I can't use rsi sometime and I don't know why

      RSI was probably below 70 at that point, so everything works 100%.

      Remember that afterwards you only see the closing value of RSI, not any intra-candle values.

      posted in Questions & Answers
      roar
      roar
    • RE: Need a little kickstart please - Adding to position

      https://fxdreema.com/shared/8P5oLlthe

      Here is a simple example of that kind of pyramiding system

      posted in Questions & Answers
      roar
      roar
    • RE: This is how to create and display a candle countdown timer

      Useful stuff. Can be also done with the Math functions: https://fxdreema.com/shared/8uD2zZgpe

      posted in Tutorials by Users
      roar
      roar
    • RE: Quicker way to edit and preview

      @martymoon120 maybe its browser dependent, on Chrome it seems to remember the last download location. There's also a chrome extension available but I dont use that.

      posted in Questions & Answers
      roar
      roar
    • RE: How to filter range areas

      ADX is generally good

      posted in Questions & Answers
      roar
      roar
    • RE: Quicker way to edit and preview

      @martymoon120 well you can download the ex5 directly to your Experts folder, skip the copypaste and metaeditor

      posted in Questions & Answers
      roar
      roar
    • RE: Loop vs No Loop - RSI Divergence Need help

      @romainchtr you got the right idea with that loop. I think you just need some additional conditions to get better quality divergences out of the loop. Maybe a rule to terminate the loop in some cases.

      Can you show a picture of some divergence the EA is not recognizing, its easier to help with an example case.

      posted in Questions & Answers
      roar
      roar
    • RE: Optimization and Backtesting

      Trailing stop or just very small fixed stops will cause that issue.

      posted in General Discussions
      roar
      roar
    • RE: News during Backtest

      I'm thinking of how what is the proper way to solve this... The dataset is UTC so NFP happens 12:30 in summer and 13:30 in winter. When loading the data to mt5, naturally that 1-hour difference stays in there. Maybe the best approach would be to convert the source to unix time type

      image.png

      image.png

      Mql5 does have an exact function for these cases, TimeDaylightSavings(), but naturally that works only live and not in backtest, that would be too easy, right... https://www.mql5.com/en/docs/dateandtime/timedaylightsavings

      posted in Questions & Answers
      roar
      roar
    • RE: News during Backtest

      Reminds me of this lol. I agree with Tom here - hard coded time switches are a pain
      https://youtu.be/-5wpm-gesOY?si=RKike151oWm5mGAK

      posted in Questions & Answers
      roar
      roar
    • 1
    • 2
    • 3
    • 4
    • 5
    • 120
    • 121
    • 2 / 121