I can't open .ex4 file with fxDreema 
Posts made by fxDreema
-
RE: EA works fine in Backtest but fails on live ECN brokersposted in Questions & Answers
I added 1 minute delay - it works. Why don't you give me some project so I can test it?
-
RE: EA works fine in Backtest but fails on live ECN brokersposted in Questions & Answers
I tried this and I got error 4109. Then I unchecked two options and now it works for me: http://prntscr.com/407tlt
-
RE: Problem with custom indicator ex5posted in Bug Reports
Ok, I removed all blocks from Betting category (they are hidden actually) and all these money managements are now in Buy now/Sell now. Because this is new update, I expect problems, but you can try it now. Martingale also works in some way when trades are not closed - it gets the profit of the newest one and calculates the next lot size.
-
RE: volatily eaposted in Questions & Answers
This is what I got: http://prntscr.com/407o4x
But this is EA that puts really short SL, I think it's normal for most of them to be closed almost immediately
This "Invalid SL" can be small problem, otherwise I think it works as it is designed. -
RE: Set take profit based on stop loss?posted in Questions & Answers
2 ways in this example: https://fxdreema.com/shared/43WHI9Ulb
The Buy trade is opened with SL and TP of 20 pips, and then TP is modified as 200% of SL. Note that in "For each Trade" there is value 1 in the last parameter, which means that the very last trade (the one that was just created) is loaded in it and then modified.
And the Sell trade is opened directly with SL = 20 and TP = 2 x SL. For this I used a Variable named "MyStopLoss" which holds the value of 20. -
RE: MT4 compilation problem "array passes by reference only"posted in Questions & Answers
I was reported about the "New order error" and I fixed it. It has nothing to do with the other warnings, but I will check those warnings anyway, I don't like warnings about arrays

-
RE: self updating/refreshing grid, compare two groups of tradesposted in Questions & Answers
Something like this maybe: https://fxdreema.com/shared/3UEI50LSd
This is the result: http://prntscr.com/407keuAnd this is very similar to placing some pending orders out there in equal distance
-
RE: self updating/refreshing grid, compare two groups of tradesposted in Questions & Answers
10 pips grid which is updated on every 10 pips? Why do I think that only the first (virtual or not) pending order in that grid will be used

There is a block "Round numbers detector" which passes on every few pips - one of it's outputs is active at a time, depending on the price movement (up or down). It goes up 10 pips - orange out is active. It goes down with 10 pips -the yellow one is active. Up, Down, Up, Up - orange, yellow, orange, orange.
If you connect some "Buy/Sell now" blocks to this block, isn't this similar to what you want? -
RE: volatily eaposted in Questions & Answers
I don't know how to decompile EAs and I don't know website where someone or software can. There was something in the past (purebeam.biz), but now this is over. And MT4 is different, there was a big change in february
-
RE: volatily eaposted in Questions & Answers
Oh no, all settings in Buy now and Sell now matters at the moment when the trade is to be created. Stop-Loss and Take-Profit, these are values to be set to the trade initially, that's all for these blocks, they will not continue working.
Try something like this, somewhere under "on Tick": https://fxdreema.com/shared/hV5AIgdjd
-
RE: EA works fine in Backtest but fails on live ECN brokersposted in Questions & Answers
I downloaded it and I can see those "+" now, but it's Saturday
If i forget to check this in Monday, write here again. -
RE: volatily eaposted in Questions & Answers
Negative Candle ID is something from the future, I think you will get value of 0 or something else. Maybe I don't get why you want to show me problematic TP which is clearly not ok

About the trailing stop, notice that there are some limitations in MT4: http://book.mql4.com/appendix/limits So you can't put SL too close to the current price. It can be moved on every tick, use Trailing Step = 0 for this and prepare for e-mail from the broker telling you that you use their servers too much :)))
-
RE: Error: Indicator cannot load (handle=10 | error code=4806)posted in Bug Reports
Now I can see that you are using built in indicator "Envelope", but probably you used custom indicator before, because there is something missing now in block 23.
This error happens very often when the indicator is not added correctly. fxDreema tries to read information from the indicator, but sometimes that information is... let's say confusing... and at the end the custom indicator is not used properly in the code and wont load. Otherwise custom indicators work, there are other people using this.
Send me your indicator if you want, I will check it's input parameters
-
RE: How to avoid losses at each tick?posted in Questions & Answers
I think the problem is that CCI can go above 100 and below 100 few times in the same candle. You know that the indicator value for the current candle is always moving up and down, it's not fixed. To create a trade you also have Stochastic, but to close it - only CCI, and CCI is free to go anywhere after the trade is created.
-
RE: Error: Indicator cannot load (handle=10 | error code=4806)posted in Bug Reports
Check if the indicator is properly added in fxDreema. Here at the bottom you can see small picture with basic data types: https://fxdreema.com/documentation/proj ... indicators Input variable names are not that important, but they must have only latin letters, numbers or "_", and the first letter cannot be number. Buffers - the same thing. I wrote about these things where you add indicators, and also in the link above.
-
RE: Problem with custom indicator ex5posted in Bug Reports
I think I fixed that, the block will pass while there is nothing in the history
-
RE: Problem with custom indicator ex5posted in Bug Reports
Is the problem that when backtesting there is no any position in the history, so the block can't calculate something for something that does not exists?
-
RE: EA works fine in Backtest but fails on live ECN brokersposted in Questions & Answers
If those "+" are the problem, can you tell me that brokers or some input data, so I can check and fix it on my side?
-
RE: Testing the ea hour by hourposted in Questions & Answers
Optimize the EA? If it is one parameter, or few of them, use these checkboxes to make that parameter input parameter for the EA: http://prntscr.com/3ysxd6
Otherwise you can create Constants, which are also input parameters, and use one Constant in multiple blocks, and optimize the EA on it.