Posts made by fxDreema
-
RE: Trailing Stop at Only Order.posted in Questions & Answers
I can see you are trying something. I can tell you about some things you are probably not aware of.
- The type of pending orders depends on the price they are going to be opened. There is no place where you can set any pending order to be "stop" or "limit". But you can use negative values for "Price offset" or "Grid size" in grid blocks.
- Also, look at the OCO option in "Buy pending order" and "Sell pending order". This opens second mirror order and then when one of the two orders is closed - the other one will be closed as well.
Otherwise what you are trying is ok. Under "on Tick" you would probably need to check how many pending orders are out there. Also you can work under "on Trade", but it depends.
-
RE: Hide indicators in the visual testposted in Questions & Answers
tcanuto, I know you for years, look at how many posts you have here. I don't understand why you are asking me basic things about indicators, don't you know everything already?

-
RE: Probably simple...posted in Questions & Answers
It depends. Take a look at this example - https://fxdreema.com/demo/mt4-loop-trailing-stop It works as a trailing stop and is not exactly what you want, but it shows how to work with these pink blocks. Also, in between those pink blocks you can also use Condition. Inside Condition there is some pink category, something like (in loop)....
-
RE: Closing all trades after one is in profitposted in Questions & Answers
It would be complicated under "on Tick", because you probably need to monitor how many trades there are at any moment, to decide when some of them is closed. But if you work under "on Trade", this is already done, so this is what I will suggest https://fxdreema.com/examples/#Events
-
RE: self updating/refreshing grid, compare two groups of tradesposted in Questions & Answers
If you control blocks by their number, I will suggest to give them names. Their numbers can be names

-
RE: change comment on closeposted in Questions & Answers
I'm not aware of such possibility, OrderClose() does not have "comment" attribute
-
RE: Check average function problemsposted in Questions & Answers
What is the situation here... sorry, but these days I have more than 15 questions a day and my brain is not very capable

But I just saw your latest project, how the hell you got these large block numbers? I have seen this problem years ago, but I still don't know how everything starts. But can't you just give normal numbers for these blocks
-
RE: Check average profit functionposted in Questions & Answers
No, this block doesn't exists in the PC version
-
RE: Turing Off EA after set $/Pips madeposted in Questions & Answers
Even if I answer 10 minutes later, the person may try something meanwhile and find the answer.
There are many ways to modify Variables - https://fxdreema.com/demo/mt4-variables I tried this example and it works. Well.. for some reason in the Tester the comment section is not auto-updated, probably because of the Delay block, but if move the chart changes can be seen. -
RE: HOW TO BUILD MARTINGALE?posted in Questions & Answers
Looking at your latest project, you failed in this rule - https://fxdreema.com/demo/mt4-wrong-closing-rule Make sure you understand this first
-
RE: error pending orderposted in Bug Reports
Е, ако няма проблеми би било чудно. Вчера пробвах да вкарам малко кеш за сините блокчета, да вървят по-бързо, обаче ей на, нещо се е счупило сега

Какви са обаче двете поръчки дето вече ги има? Малко не ми се получава да получа същия проблем в тестера
-
RE: indicator tester disappearedposted in Bug Reports
Because I renamed it... twice. Look for Trace now
-
RE: BUG get candle Timeposted in Bug Reports
http://www.epochconverter.com/
In a program it's easier to deal with such a number. Of course, you don't understand it, you have to convert it as a string for your eyes. I just did that for the **Alert **block. If the input value has data type such as datetime, which is the case in Value -> Time, then in the **Alert **block this value will be converted to string. But for Candle Time, the problem is that all values in this category have the same data type - double
-
RE: BUG get candle Timeposted in Bug Reports
I will try to do something with Value -> Time. But Candle Time always appears as a numeric value, because... it's hard to explain
-
RE: Turing Off EA after set $/Pips madeposted in Questions & Answers
I can see in your projects that you have found one way to do that in Custom MQL4 code. That increment by itself should work.
-
RE: Trade not getting triggered, please help.posted in Questions & Answers
When I see these checkboxes checked... what can I say...
Check this example that I made yesterday, it shows how to understan when/if some block is active or not- https://fxdreema.com/demo/mt4-trace-activity
-
RE: How to start the trailing stop in the next Candle open timeposted in Questions & Answers
Now you have 2 for cycles one in another, not one after another. Is this your idea...
At this hour of the day my mind doesn't work very well, but these are for loops and if something is wrong, it's probably something logical. But also these loop blocks are not very useful, you probably need to break the loop at some point.You know, weeks ago I added some more options for My Indicators. These options - http://prntscr.com/aglznm The problem is that they are only for custom indicators and Fractals is a built-in indicator.
-
RE: Hide indicators in the visual testposted in Questions & Answers
It is not possible to embed custom indicators into EA or Script. Custom indicators are independent programs