fxDreema

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

    Controversial posts made by fxDreema

    • RE: Restart ea

      I think it depends on what kind of restart he needs. Because the EA restarts also when you modify its properties, but this restart is not full restart and some global variables still keep their values.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: handle=10 | error code=4806

      MQL5 is weirdly asynchronous and I often have unexpected problems with it. But if the error shows only once and then everything works, it's not a big problem

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: "Cross width" Clarification For Indicators

      Cross width is number of candles between both crossover points. To mention again, the candles in between are not used in this type of crossover, but maybe I will do it that way in future. Now it is simple as that:

      • Line A crosses Line B below when: A[new bar] < B[new bar] and A[new bar + cross width] > B[new bar + cross width]
      • Line A crosses Line B above when: A[new bar] > B[new bar] and A[new bar + cross width] < B[new bar + cross width]
      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Cross Width Doesnt Save

      Only 1 value can be used for Candle ID, and I don't think I will do something about it, at least not in Condition 🙂
      Maybe "Indicator moves within limits" can be used for this, because it checks each candle. Normally it checks some indicator for each candle, but candle parameters can be considered as indicators, so... not impossible.

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Modify (Move) Pending Order to certain price level

      If you try to put an order at the same price where it's currently placed, then nothing should happen anyway, so you don't have to ask.

      I think that your EA is overcomplicated, because it has many similar groups of blocks. Anyway, now the problem is that the real names of the objects are not exactly what you want, so try with these settings: http://prntscr.com/btfe8w

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: partial close

      https://fxdreema.com/shared/DXBa7Rlrb

      Partial close of 1 lot in steps:

      • 0.2 fixed lot
      • 20% of initial (1 lot) volume
      • 50% of the current volume (what is left from it)

      The result is this: http://prntscr.com/3gdvve

      • 0.2 lots closed, now we have 0.8 lots
      • 0.2 lots (as 20% of 1 lot) closed, now we have 0.6 lots
      • 0.3 lots (as 50% of 0.6 lots) closed, now we have with 0.3 lots
      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Forum update

      @CPxiom said in Forum update:

      @fxDreema Hello, it seems favicon is missing, or it looks changed. Using Safari. Screenshot 2023-02-24 at 13.07.20.png

      Favicon is that small icon that now looks like mirrored blue letter B. This is just the default NodeBB icon. I'm not sure whether I want to change it, because my icon is very stupid 🙂

      The logo thing appears from time to time, and this is how it happened even before. I think it's because of two broken <meta> tags in the <head>, which seems to prefer to stay broken.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Forum update

      Here are the user settings:
      image.png
      I remember changing only that "Follow topics you reply to". I see there are two "None" settings, I will set them to "Notification Only".

      About the image upload, I knew why it broke and I fixed it.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: RESTART EA AFTER NO TRADES OPEN

      Reading "It doesn't...." I understand that this is the way it is right now and it needs to be other way. I also assume that the screenshot shows the problem.

      Ok, this is what I have -
      https://fxdreema.com/shared/iJnetfkZb
      http://prntscr.com/avhp7w
      http://i.imgur.com/a0g0VaZ.png

      You can see the price labels. They represent the signals that the block produce. Tell me which label you don't want to appear? Or which arrow you expect to appear, but it doesn't?

      (it's funny how the golden labels ends with 001, this is probably some bug and I will fix it later)

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Terminate other EAs

      I guess that I need to update some pictures 🙂 Search for "Terminal variables"

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Draw line chart?

      Well, as you probably know, lines are normally drawn by indicators. And their lines are actually a little bit different kind of lines. If you try the "Trace" block, it draws a line, but that line is made out of multiple trend-lines, multiple objects. Compared to that, Moving Average draws a line that does not appear on the list of objects. So the best is to make a custom indicator. EAs are primarily designed to read indicators data and put trades and orders here and there.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: EA that can stop/exit other EA?

      Here is how the code of the "Delay" block works in the studio - http://prntscr.com/ig6otk This is the only block where I use .dll and the #import code can be seen at the bottom. Normally I don't want to write code that uses .dll file

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Draw Line

      I don't know why that happens with Trendline by Angle. It looks that it works with correctly with angles different than 0. And with angle 0 it works fine initially, but then the line becomes vertical.

      I placed this block in "on Init", so it creates only 1 line at the beginning. At first tick the line looks horizontal, only to become vertical (or sometimes disappear) on the next tick.
      Actually, the line becomes vertical even if I only click on the chart with the mouse. I put the Tester on pause, so everything that the EA does is to run the block in "on Init" to create a trend line, which appears horizontal at first... until I click somewhere.

      What is notice is that in the properties of the object we can see slightly different values in both Value inputs. In the MQL4 code we provide only one value (for Price 1), while the other value (Price 2) is set to 0. MetaTrader is supposed to automatically calculate it, and I guess that it should set it to be exactly the same as the first value... but for some reason it decides to change it a little bit, I don't know for what reason.

      By the way I see that in your project you have "hedge" in the title. My opinion about this is that it is a scam. I think that "hedging" in the same symbol is useless, too complicated, hard to do and the result is surely not that magical.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Automatically add lot volume when trade goes wrong..similar to martingale but not exactly.

      Different volume and TP... this almost sounds like a different "Buy now" block. You can reuse one block with different input values, if you are using some Variables, but how do you really want to do it - with 1 block or with multiple?

      And what means "Different". Because I can say that I want such volumes - 0.1, then 0.3, then 0.2, then 0.1... - those are like random numbers, there is no system in them. Or I can say I want to double the lot size, which is a system and is called Martingale, as everybody knows. And in "Buy now" you have this Martingale option.

      Not only Martingale, but you have this "Betting: Custom sequence" option, which is probably the one you want to use. Try it.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Ocult Indicators

      Well, there are MQL4 functions for that, but not in MQL5, and because of that I didn't added them in fxDreema. I think in the past we wrote with someone about this problem. I don't exactly remember how it was done, but I know it's possible... you only need to write some MQL4 functions in some "Custom MQL4 code" blocks.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: How to close trade at close price of bar~

      Once per bar -> Close trades?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Fibonnacci

      Mmmmm yes. Somewhere in Condition, where Object attributes are, search for Fibonacci attributes (somewhere at the bottom of the list of attributes) But it can be tricky, especially if you use some of these fancy looking fibonacci 🙂

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Replace a previously closed trade

      http://fxdreema.com/shared/6jEmcD4hd

      posted in Questions & Answers
      fxDreema
      fxDreema
    • 1 / 1