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: Formula block behaviour

      I don't know, it can be something that me and you are not aware of. By the way there is no difference from yesterday. I was not updated the site from some weeks, because I'm preparing a new update that is bigger than usual.
      The subscription itself should not "clear" bugs like this, I believe it does not matter in this case.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: EA simple that works by the movement of the price.

      If I am close to the question... http://fxdreema.com/shared/TkZhN3qde

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Formula block behaviour

      This is not expected.
      I created this: http://fxdreema.com/shared/iBdbdWqsd
      but there is not error message... can you show me not-working examle?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: "Fxdreema cannot write the file. Operation was cancelled."

      There is a 15 seconds timeout to write the file. Maybe the time to build the file is too long with the number of blocks that you have. How many blocks do you have?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: && ||

      Hm, there is some problem with the local version. Anyway, I can suggest that you create a custom block with the same content. A little bit more here: http://fxdreema.com/documentation/libra ... y%20studio

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: My first EA FxDreema

      Adjust field can contain any MQL code, so you can put the name of any variable there, but "pips" keyword can't help in this case 🙂 If you can have the variable with value like 0.0003, fine. Otherwise you can try this way:

      +toDigits(MyPips)
      

      Where MyPips is the name of the constant. toDigits is a function that turns "3" into "0.0003" when the project uses point format "0.0001".

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: && ||

      Custom code block... Is this "Custom MQL4 code" block? Can you show me simple example, because I think I don't really get the question?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Library Input value , to .

      This happens with numeric datatypes and it's not a bug, basically. If someone types "0,1" instead of "0.1", this will lead to an error, and because of that all "," are transformed into "." 🙂

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: MQL5 : "(in loop) Check position/order age"

      I think I fixed both problems, you can try it now. Thanks for reporting them.

      posted in Bug Reports
      fxDreema
      fxDreema
    • RE: Calculate order open to current stop for all trades running

      If "order open" means "open price", what is "current stop"? 😮

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: "Modify each trade" block query

      No no... Group is specified in "Start trades loop". Each of "(in loop)...." blocks does something over the already loaded trade/order/history trade.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Chart shows spread of 100, but actual is 1

      I can't even found this instrument in my list. I'm not sure if spread indicator is wrong (it can be), but the pips size is calculated depending on the number of digits of the instrument and "Point format" defined in fxDreema. The little problem is, some instruments are currencies, others are metals... you know, different nature. It can be easy if you are building that EA especially for that instrument, then you can tune Point format in fxDreema.

      This is part of the code in the function that draws the spread indicator, I think you can see something here:

      
      int digits=MarketInfo(Symbol(),MODE_DIGITS);
      if ((digits==2 || digits==4)) {pip_value=(POINT_FORMAT/0.0001);}
      else if ((digits==3 || digits==5)) {pip_value=(POINT_FORMAT/0.00001);}
      else if ((digits==6))              {pip_value=(POINT_FORMAT/0.000001);}
      

      By default POINT_FORMAT is 0.0001, this value can be changed in fxDreema.
      digits - the number of digits after the point, this depends on the broker.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: "Modify each trade" block query

      You know... while you waiting for an answer to this, you can check it so many times :))

      If a numeric field is blank, it's value will be 0 in the output code. Sometimes I totally forget what a certain block can do, but I'm almost sure that this one will clear TP if you put a value of 0. By the way, this block has the loop inside.

      The story of the whole group of blue blocks is that I started creating them, then I created all the pink blocks, and because they can do what the blue ones can do (and more), I abandoned blue ones 😆

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Suggestion : Blocks fold

      I love visual explanations. This is a good idea, but I wonder what should happen when you open that branch and there are other blocks out there 😮

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: TradeManager

      Isn't that strange, MetaTrader is 10+ years old and there are people asking how to do something really simple with it? Here are more...

      http://forums.babypips.com/trading-soft ... lugin.html
      http://forums.babypips.com/trading-soft ... tware.html
      http://forums.babypips.com/trading-soft ... r-4-a.html

      fxDreema is not the super-flexible when it comes to charts and objects, but it can help for some basic things - it can get the level of a horizontal line, for example. But I'm not sure how good manager you can create with objects. Objects are identified by unique name, so in this case when you put a new line, you will have to rename it correctly in order to work. There is another way - to create a loop with objects and work filter them by certain attributes (color, line style), but here the problem is that you don't have predefined objects in MT4, and when you put a new line - it is the same as last one.

      I can't recommend such a software, but you can search for programs specially designed to help manual trading.

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Set the close trade level when trade is X pips in profi

      Alepie, "Start trades loop" should be connected before block 5

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Set the close trade level when trade is X pips in profi

      Check this: http://fxdreema.com/shared/2JyEiiKnb

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: "Modify each trade" block query

      I should update this block, but you can use "Start trades loop => (in loop) Modify SL and TP".

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: MT5 single position

      You can always try it, this is easy. For example: http://fxdreema.com/shared/lnJbQa37b

      posted in Questions & Answers
      fxDreema
      fxDreema
    • RE: Chart shows spread of 100, but actual is 1

      What symbol is this?

      posted in Questions & Answers
      fxDreema
      fxDreema
    • 1
    • 2
    • 357
    • 358
    • 359
    • 360
    • 361
    • 374
    • 375
    • 359 / 375