Strange, everything is fine here. What happens if you compile MQL4 file with MetaEditor? Maybe you can come into the chat.
Posts made by fxDreema
-
RE: Build 033 corrupting EA and won't edit titleposted in Questions & Answers
-
RE: Set the close trade level when trade is X pips in profiposted in Questions & Answers
Learning is a process that happens with personal experience. And learning is good

http://fxdreema.com/shared/fdF9cM6Hd
I disabled block 6 because it causes the position to close immediately.
If the numbers that you are using can be calculated with a simple formula, the project can be made with less blocks.
This project is still incorrect, but I want to show you something that you can learn from. You will notice that SL is moving in both directions. You can put "(in loop) Once per position" after every "(in loop) Pips away from Open Price" to not be able to return to the lowest level (to modify each level once), but there is a better way to lock the direction.The better way is to check where is Stop Loss in relation to Open Price before going to modify. But I will try this tomorrow, because I am too tired and sleepy right now, and I want to include some more options in "Condition -> (in loop)..."... something like StopLoss-OpenPrice, OpenPrice-StopLoss, TakeProfit-OpenPrice, OpenPrice-TakeProfit.
-
RE: Cannot get blocks into working areaposted in Bug Reports
Both problems are fixed. Thanks again for the report.
-
RE: Cannot get blocks into working areaposted in Bug Reports
I was doing updates today and there were some problems (as usual). Sometimes it takes seconds for me to repair the problem, and sometimes I am not aware until someone tells me that something is wrong. So thank you for the alert. Now I checked how it is working on Firefox, Chrome and Opera, it seems to be ok. Is it ok to you?
-
RE: Set the close trade level when trade is X pips in profiposted in Questions & Answers
There are days full of unexpected bugs, especially when I'm updating
Really sorry for that. Projects are now visible.There is a logic mistake in your projects. When you have many blocks connected out of a single block, they are all executed one after another. Imagine the price is 100 pips away at the moment, and you have 10 blocks that checks if the price is 10, 20, 30.... 100 pips away. Well, they all will pass because they are all executed and they are all true.
In this case you have to connect them in certain way. Look at the exaple that I posted above, it shows that. There are only two "Pips away" blocks, but you will see how are they connected. I think you will get the idea. -
RE: Less than "n" trades are runningposted in Questions & Answers
The fact is that even I am always confused with this block
But I made another one that you can try instead - "Check trades count". At least it sounds better. -
RE: Local version - internet required - request :)posted in Questions & Answers
Unfortunately I don't want to deal with serial numbers or licenses, but I have some idea that I can test and if it is working as I expect, I can maybe make it almost offline.
Meanwhile I know another EA builders that can work 100% offline - Forex Generator, Molanis, VTS, EA tree, NoProgra... and there are even more
-
RE: Calculate order open to current stop for all trades runningposted in Questions & Answers
There is some problem with MySQL on the server, it seems that it works slow as hell sometimes and it tooks tens of seconds to do something very simple, especially within the forum. The technicians said that they have started to repair it, and I hope that it will be ok soon. I really sorry for the troubles.
-
RE: Excellent!posted in Questions & Answers
Copy-Paste works within the same project or between projects in the same account. It does not work between two accounts.
-
RE: Excellent!posted in Questions & Answers
Copying works within the same platform and user account. When you "Copy" something, a new temporary file is written somewhere in your account, and then when you "Paste" it, the copy-data is read from the file. I guess you are trying to copy-paste between web and local version - it does not work.
-
RE: Calculate order open to current stop for all trades runningposted in Questions & Answers
I missed to look about that problem in the local version, but I will check it later... now I'm trying to understand some mystery that causes the whole website to extremely slow down

-
RE: True or False in external parameters, how do I?posted in Questions & Answers
Well, this will work as well, only the name of the variable is automatically generated

-
RE: EA running balanceposted in Questions & Answers
Hmmm... maybe I missed something from the idea. But ok, if you got it yourself

-
RE: EA running balanceposted in Questions & Answers
Now I san suggest something like this what I just posted in another topic: http://fxdreema.com/forum/topic/1952
-
RE: profit/loss of group of tradesposted in Questions & Answers
There is nothing in "Condition" that can work with only a group with trades. Here is how to do it with a loop: http://fxdreema.com/shared/ChS0MSylc
The same thing can be done with using Variables instead of Formula Results. -
RE: True or False in external parameters, how do I?posted in Questions & Answers
Now it seems that there is no input field in "Value (boolean)" that we can assign to a Constant, because there is only one drop-down True/False menu. I winder if I have to make it possible to assign Constants and Variables to those drop-down menus... but nevermind.
http://fxdreema.com/shared/NiBgwlwC
Boolean datatype is not very different than a numeric 0 and 1, where 0 is false and 1 is true. We can use Value (numeric) when we work with boolean values and there are even no warning messages in MQL4. It just works.