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.
Posts made by fxDreema
-
RE: Formula block behaviourposted in Questions & Answers
-
RE: EA simple that works by the movement of the price.posted in Questions & Answers
If I am close to the question... http://fxdreema.com/shared/TkZhN3qde
-
RE: Formula block behaviourposted in Questions & Answers
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? -
RE: "Fxdreema cannot write the file. Operation was cancelled."posted in Questions & Answers
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?
-
RE: && ||posted in Questions & Answers
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
-
RE: My first EA FxDreemaposted in Questions & Answers
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".
-
RE: && ||posted in Questions & Answers
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?
-
RE: Library Input value , to .posted in Bug Reports
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 "."

-
RE: MQL5 : "(in loop) Check position/order age"posted in Bug Reports
I think I fixed both problems, you can try it now. Thanks for reporting them.
-
RE: Calculate order open to current stop for all trades runningposted in Questions & Answers
If "order open" means "open price", what is "current stop"?

-
RE: "Modify each trade" block queryposted in Questions & Answers
No no... Group is specified in "Start trades loop". Each of "(in loop)...." blocks does something over the already loaded trade/order/history trade.
-
RE: Chart shows spread of 100, but actual is 1posted in Questions & Answers
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. -
RE: "Modify each trade" block queryposted in Questions & Answers
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

-
RE: Suggestion : Blocks foldposted in Questions & Answers
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

-
RE: TradeManagerposted in Questions & Answers
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.htmlfxDreema 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.
-
RE: Set the close trade level when trade is X pips in profiposted in Questions & Answers
Alepie, "Start trades loop" should be connected before block 5
-
RE: "Modify each trade" block queryposted in Questions & Answers
I should update this block, but you can use "Start trades loop => (in loop) Modify SL and TP".
-
RE: MT5 single positionposted in Questions & Answers
You can always try it, this is easy. For example: http://fxdreema.com/shared/lnJbQa37b