fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. fxDreema
    3. Posts
    • Profile
    • Following 0
    • Followers 691
    • Topics 32
    • Posts 7485
    • Best 277
    • Controversial 18
    • Groups 1

    Posts made by fxDreema

    • RE: MT5 free export?

      When you make a new project, there is an option to choose to make it for MT5

      posted in General Discussions
      fxDreema
      fxDreema
    • RE: Unsupported filling mode (10030). XM Broker , Partially Close Block

      I added this into the function, I hope this will not break something else 🙂

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Error to load a custom indicator

      Maybe you can share the indicator so I can investigate it? 🙂

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: critical runtime error 503

      Can someone make a shared copy for me to investigate 🙂

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: How can I specify a distance between indicators?

      Yes, this should remove 20 pips from the value of MA20. If the value of MA20 is let's say 1.2345, then this value will be modified to be 1.2325 (which is 1.2345 - 0.0020). You can actually see the result of this calculation if you try this in the "Trace" block

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Help wanted, please!

      Yes, I just opened this link now https://fxdreema.com/shared/YGCxbQKOd (note that when someone opens a shared link, a temporary copy of the project is created for him, and after a while this copy is automatically deleted) and I have this: http://prntscr.com/ibgnoa

      Because it works for me at the moment, I can't really tell what was the problem and whether it is in MetaTrader or in the EA. What I can suggest, just in case if the problem is in the EA, do remove those blocks and connect them again... but I don't see why this would work, because the output code should be the same...

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: want to close most recent trade

      For each Trade -> check age -> check age -> close

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: "Terminal connected"-Block does not work

      Well, if you are under "on Tick" and there is no connection, nothing will happen because there are no ticks as well. I guess that this block should be used somewhere else, in "on Init" or "on Timer"

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Very unique time filter-is it possible?

      But be careful with these seconds. Under "on Tick" you should expect that there is no tick coming in your time, so the exact second could be missed. That's why miro1360 shows you how to set a period of few seconds, just in case. After this block I can suggest to place "Once per bar", because you could have multiple ticks in this period.

      And if you really, really want to open a trade at this second, you can put these blocks under "on Timer". There are settings for the timer somewhere in the project settings (that icon in the upper right corner) where you can set the timer to work every 1 second.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Do Virtual Stops work with Multiple Level Trailing Stops?

      As you know, bugs are always around. I can't tell what it is, I guess you may provide some example project that it shows the problem, so I can investigate it and fix it if something is wrong.

      Otherwise the virtual stops are simply horizontal lines. On every tick one special function is called, and the code in this function looks at these lines and compares them with the current price. If the price is beyond some line, the trade that "owns" the line is closed. In theory everything should work almost the same, especially when backtesting.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Constants

      That's why you see this title - Constants (Inputs)

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: critical runtime error 503

      I don't know what this error is. In the documentation of MQL5 there is no error with this number. Google finds this topic: http://fxdreema.com/forum/topic/4712/how-to-fix-critical-runtime-error-503-in-ontick-function But tcanuto somehow decided his problem with this error in the first message.

      I put your project to test (on EURUSD) and I have no errors, but I removed block 15 because I don't have the indicator used in it. Do you have the error without this "tdi" indicator?

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Help wanted, please!

      @isp00rt It's funny, this seems to work when it wants.

      I first backtested the shared project - no ugly Comment on the chart.
      Then I imported that project into my projects, so I can investigate it more. Still, no Comment and I found that block 11 probably doesn't pass. I used "Draw arrow" and block 11 was when it all breaks.

      After few more checks the Comment started to show. And now I can't un-show it, now I can download the untouched shared project and I can see the Comment every time. It just shows every time now, as it should. There is some magic here, I don't know how this happened 🙂

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Constants

      That's true, but the idea is to use Constants for values that you don't want to change. Also, those values will be input parameters for the EA in MetaTrader.

      Variables are to be used inside the project, they are like global variables that hold certain values and these values can be changed at any time in the project.

      In the desktop version I mixed them a little bit, which was probably not a good idea.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Multi strategy EA?

      Take a look at that "Group" parameters in each trading block, such as No trade, Buy now, Trailing stop, and so on

      https://fxdreema.com/help/working-with/magic-start-and-groups

      posted in General Discussions
      fxDreema
      fxDreema
    • RE: Trading multiple pairs with 1 chart

      But of course it's a little bit different than having the same EA on different charts. Remember that if you put one EA under say EURUSD, then it only works because of the EURUSD ticks.

      Check this block: Set Current Market" for next blocks

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: trend line in pips

      In MQL they call this object Label, in fxDreema you can print text on the chart with "Draw Text" - http://prntscr.com/i6xflz. The trendline object itself does not have such optional labels I think, it's just a simple line.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Trailin stop, my idea. Should it work?

      I think you want to use that Trailing Start parameter, here is more info about the parameters in the trailing stop block: https://fxdreema.com/help/working-with/trailing-stop

      In MQL4 I recommend using one of the "For each..." blocks before that "modify stops" block. Remember that "modify stops" block modifies the stops of one trade or order. Ask yourself - if you have many at the same time, which one?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Custom blocks seem to be disabled

      I never tested long names, this is intresting

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Condition for spread

      In "Value", where "Numeric" is, there is "Pips" as well. There is this option there to get a value "as price fraction", by which I mean the difference between two prices, exactly what ask-bid is.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • 1
    • 2
    • 67
    • 68
    • 69
    • 70
    • 71
    • 374
    • 375
    • 69 / 375