Web version?
Posts made by fxDreema
-
RE: How to see current profit?posted in Questions & Answers
Depending on what you mean by "on each chart". I can suggest to try this thing: https://fxdreema.com/demo/mt4-bucket-trades
-
RE: problem with betting costum sequenceposted in Questions & Answers
Better use only one "Buy" block, the one with the Sequence. Try it this way: http://prntscr.com/dbzgcv
-
RE: does my block 7 & 8 really ensure 1 trade at a time?posted in Questions & Answers
Don't check those checks for optimization for all parameters, only for those who are normal input fields that contain numbers or text
If "No trade" is broken, I would expect it to allow multiple trades in short period of time, which is really bad. But your trades are placed in minutes apart. It looks like some kind of strategy is happening. Not to mention that "Once a day" should prevent anything below it to happen more than 1 time a day.
Are you really sure that you are working with the correct EA in MT? -
RE: Can't compile projectsposted in Bug Reports
@alexdepa Do you use the Chrome plugin? I noticed that sometimes it stops working, I don't know why, but reinstalling it works.
-
RE: Add RSI as a buy/sell signalposted in Questions & Answers
@aweverard I can see in your projects that you use multiple blocks with crossover in them. First of all, here is about the crossover in "Condition" block: https://fxdreema.com/help/working-with/crossover
The rule is to use only one crossover in series of blocks, because blocks does not wait to pass. If "Condition" is false, that is, it does not wait to pass. But crossovers are single candle wide... I mean that certain "Condition" block with certain crossover in it could pass within one candle, but then the candle ends, it's over, no more passes. And if you use multiple different "Condition" blocks with crossovers, then all crossovers must happen at the very same candle in order to pass them all. Which is normally not the case.
So, instead of using multiple crossovers in a row, use only one and the rest should be > or <. Because guess what, if crossover happened somewhere in the past candles, now at the current moment one line is either > or < than another

-
RE: Working with the Ichimoku Kinko Hyo indicator in FxDreemaposted in Questions & Answers
Am I needed here? Someone better tell me which buffer does not work correctly, because by looking at this indicator I have no idea what is what

The green line should only work with Candle ID with some big positive value... 26, 27, whatever the first candle with green line is.
To get "future" values from the orange thing, use negative Candle ID.Or in other words, if you want to get a value from particular candle, count the position of that candle relative to the current one. The current one is 0, the previous is 1, the next previous is 2 and so on. In the "future" the first one is -1, then -2... But if there is no line for the candle, the value that will be read is EMPTY_VALUE (that huge 217..... number)
-
RE: Algorim not working as expectedposted in Questions & Answers
Block 29 is there for nothing. Here I described this problem: https://fxdreema.com/demo/mt4-wrong-closing-rule
Blocks don't wait. Although there is a way to make them wait: https://fxdreema.com/demo/mt4-wait-crossovers But I don't believe that you need something like this now.If you want 1 trade at a time, just use one single "No trade" above. So, if there is any trade (Buy or Sell), the block would not pass and no other trade will be created until the current one finally closes.
If you want to make buy-sell-buy-sell strategy.... it depends. I see that you probably got idea from this one: https://fxdreema.com/demo/mt4-buy-sell-buy-sell-opposite-conditions And in this one the result is really buy-sell-buy-sell, but the indicator itself makes that possible, it doesn't work with whatever you put in "Condition" blocks.
-
RE: Block: Trailing stop (groupe of trades)posted in Questions & Answers
As long as I know, commissions are always zero in the Tester. But in the code of this block I use OrderCommission()
-
RE: Trader3487posted in Questions & Answers
Well, I guess that file uploads doesn't work for some reason

What I wanted to say is that the spread does not depend at all on the EA, the Tester (MetaTrader) controls it and the EA works with whatever it is. But the spread can be changed for tests from the "Tester" panel. DrawSpreadInfo() only prints information, nothing more. Even if you remove it, this will not change anything.
-
RE: Trailing stop bugposted in Bug Reports
Well, the decision of the block to move SL depends on few parameters - current price, current SL, trailing Stop, trailing Step and also Start. Few days ago I posted this page in the Help section: https://fxdreema.com/help/working-with/trailing-stop
I think that what it does is expected, because the initial SL is far away from Open Price. But you can delay that with Trailing Start.
-
RE: Problem to compile EX5posted in Bug Reports
Well, some of the problems are still because of the new system and this one looked like such. I guess I will wait for someone else to encounter this problem and report it... what a shame to me
-
RE: MT4>>MT5posted in General Discussions
If I ever understand how to work with it

I just noticed this:
https://www.mql5.com/en/forum/53/page17#comment_2431783

Is this really working? -
RE: Bucket of Positionsposted in Bug Reports
Ok, there was a problem in many blocks and it is my fault. When I was making the EA builder to work with the new hedge mode in MT5, I did that for some blocks, but I guess I missed other blocks - all those blue blocks where "If position" is. Also "Bucket of Positions".
I think I fixed the problems, but who knows what I missed again. By the way, the EA should work the same without some "If position" blocks, like 30, 40, 17 and 27, but if you feel better with them, keep them.
-
RE: Bucket of Positionsposted in Bug Reports
Blue color for sells and red color for buys. Very original

I was about to try this EA, I started it, MT5 said that wants to restart (and update) and now It hangs. Why should I dislike MT5

-
RE: fxDreema Updating Nowposted in Questions & Answers
I totally forgot about this setting, it's currently off for everyone. I think I fixed it and it should be working
-
RE: does my block 7 & 8 really ensure 1 trade at a time?posted in Questions & Answers
Yes, from what I see you should have 1 trade at a time. And the block on the top should be enough. If it doesn't happen this way, do you have evidence about that?
These days I actually discovered some problem with this block and I believe that I fixed it. But this block is probably the most important block and it's not a good idea for it to fail.Another reason for double-trades can be if you have some forgotten EA working on other chart.
-
RE: 3 month subscription not registeredposted in Questions & Answers
Well, not directly, I can't touch the desktop version, but there were problems with its communication with server caused by the server. This is what I was fixing, the messages sent to the desktop. I think that now remaining periods are correct. Only there is some white screen when loading, but this this does not prevent the desktop version from working.
I still don't like the idea of desktop version for the same reasons:
- I personally never wanted to make anything for the desktop, my passion was always the web
- I must think about the local database that everyone has. Now on the server if something is wrong with the database, I can do something about it. But you can see that fxDreema is already larger than me, I was fixing problems whole week after 1 year of preparing that update. The desktop version is just another thing I must always think of.
If someone thinks that the desktop version is more secure, then I can say that no one ever complained that his projects were stolen or something like that. Desktop version can be more stable, but again, I know myself and I know that when the desktop version is around, It's harder for me to motivate myself to add something new to the builder
