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: close all trade button not working

      @Stevemill is it on your objects list?

      posted in Questions & Answers
      roar
      roar
    • RE: close all trade button not working

      @Stevemill yes

      posted in Questions & Answers
      roar
      roar
    • RE: Read data from google Sheet ?

      This might help https://www.mql5.com/en/articles/3331

      posted in Questions & Answers
      roar
      roar
    • RE: close all trade button not working
      • You need to draw your button just once, not on every tick or every chart event. Move the draw button to On Init.

      • When checking the mouse clicking, you are looking for a different name - "Button1" vs "button 1"

      posted in Questions & Answers
      roar
      roar
    • RE: How make a Trailing TP mechanism?

      You are talking about trailing SL, right?

      To not close in loss, set some trailing start parameter, so it doesnt activate immediately.

      posted in Questions & Answers
      roar
      roar
    • RE: close all trade button not working

      Sure, just link your project here

      image.png

      posted in Questions & Answers
      roar
      roar
    • RE: MT4 availability, compatibility and usage in 2023

      Ok, maybe they just want to get people on mt5...

      Heres a broker version that is at least up to date. You can use this on any broker, just change the account.
      https://titanfx.com/trading-platforms/download-centre#mt4

      posted in General Discussions
      roar
      roar
    • RE: MT4 availability, compatibility and usage in 2023

      Did you use this link in the official site? Note that you need to scroll down, mt5 is first on the page.
      image.png

      Anyway, you can use any broker with any mt4 program, just click File -> Open an account, and search your broker there.

      posted in General Discussions
      roar
      roar
    • RE: how would you do this?

      @tec-nacks I cant draw any conclusions, I can only say the history data check fails for some reason.

      posted in Questions & Answers
      roar
      roar
    • RE: how would you do this?

      @tec-nacks getting more data helps, thats for sure

      posted in Questions & Answers
      roar
      roar
    • RE: candle ID in lower TF

      Record the datetime value of hourly candle:

      datetime timevar = iTime(NULL, PERIOD_H1, 123);
      

      Get the candle ID from that time, in selected timeframe:

      int idvar = iBarShift(NULL, PERIOD_M1, timevar);
      

      https://www.mql5.com/en/docs/series/itime
      https://www.mql5.com/en/docs/series/ibarshift

      posted in Questions & Answers
      roar
      roar
    • RE: how would you do this?

      @tec-nacks the EA tries to copy some time data to array time, but this copying fails because of some data issue - do you have enough history data for all your symbols?

      posted in Questions & Answers
      roar
      roar
    • RE: how would you do this?

      @tec-nacks open the code file, go to line 4857, see what array it is, see what index the EA is trying to access

      posted in Questions & Answers
      roar
      roar
    • RE: NOT WORKING

      If ZigZag indicator had a low at candle ID 1, the low would be printed to the candle low 1.
      Candle close 1 is never below candle low 1, and close 1 never crosses below candle low 1.

      posted in Bug Reports
      roar
      roar
    • RE: are experiencing the same?

      Server clogging up every day, I'm starting to miss the local version...

      posted in Questions & Answers
      roar
      roar
    • RE: MT5 Optimizer not working with many FX Dreema EA - RESOLVED

      @QuantEngineer same bug reported here: https://fxdreema.com/forum/topic/16494/close-positions-when-market-is-closed

      Another workaround: close with the purple positions loop instead of blue close block.

      posted in Bug Reports
      roar
      roar
    • RE: Drawing out Lines

      @tec-nacks impossible with fxdreema and any other mql5 environment.

      Well, theoretically you could try to re-scale one of those indicators, by checking the highest and lowest point of each indicator for the currently visible part of the history, but it gets real complex real fast

      posted in Questions & Answers
      roar
      roar
    • RE: Drawing out Lines

      @tec-nacks that will not work. If you force Ichimoku and RSI on the same window, you will graphically see them overlap, but in the background they use completely different scales.

      Mql5 doesnt have any methods for working with graphics (pixels) rather than indicator buffers and real values.

      posted in Questions & Answers
      roar
      roar
    • RE: EA To Look for Two confirmations and enter after confirmations

      Theres a couple different methods, either way you need to learn variables first:
      https://fxdreema.com/tutorial/builder/constants-and-variables

      posted in Questions & Answers
      roar
      roar
    • RE: Random ea

      @l-andorrĂ  computers are actually pretty bad at making "random" decisions, so they need a little help.

      MathSrand() is a function that sets the starting point for random numbers generation. It takes a seed number as argument. I made a seed number by taking the tick count of current chart, and making some maths with it: take the modulo 13, multiply by 123456.

      Once the random number generator has initialized, we can ask for random numbers by running MathRand().
      It returns a number between 1 and 32767, so dividing the random number by 32767 will result in a random fraction between 0-1. Now we can multiply 60 minutes by that random fraction to get random minute.

      posted in Questions & Answers
      roar
      roar
    • 1
    • 2
    • 11
    • 12
    • 13
    • 14
    • 15
    • 120
    • 121
    • 13 / 121