Are you sure about the "Once per trades" block? I personally never used this one in any projects I have made
Blocks such as Trailing stop and Break even should be run on every tick. I also don't like this 13-12 connection that you have. I didn't tried your latest project, but in general it doesn't look very well for me.
Posts made by fxDreema
-
RE: Manage tradeposted in Questions & Answers
-
RE: Candle Touches Moving Averageposted in Questions & Answers
https://fxdreema.com/help/-/working%20w ... e%20closes
"Once per bar" should be used instead. Here is some example: https://fxdreema.com/demo/mt4-once-per-bar
-
RE: How to integrate a stand alone EA into fxdreema?posted in Questions & Answers
If you know the logic, you can try to build it. That's why it's called "EA builder". But custom made full EAs can't be imported. You can create and work with custom functions, but I don't think the idea is very good. Just try to build the logic with blocks.
-
RE: Please helpposted in Bug Reports
"double" type is a numeric data type for floating point numbers such as 1.2345. EURUSD and USDCHF are not numbers, nor variables. Use "string" data type instead.
-
RE: Closing trades by indicatorposted in Bug Reports
This is what you have for the Sell part: http://prntscr.com/c7hqm3
Guess what... if RSI is lower than 16, then it's lower than 45 as well. If both Conditions (10 and 13) are both true, you can imagine that they does not exists.Maybe you can use "Once per bar" somewhere. Or maybe you want to use x< or x> in some Condition.
-
RE: Suggestion FxDreema designposted in General Discussions
Yes, I almost have it now on NodeJS. I'm also changing the database and the forum as well. I hope that it will work as expected one day.
I think that other people need to tell their opinion about this as well. You are probably coming from another EA builder and you get used to it, but I guess that there are many people who are used to fxDreema. One guy told me that he prefers the old way to list blocks, with all categories expanded, which means even more scroll. He eventually found that if he write a* in the Search field above, the whole list expands.
About the pictures.. there are probably more than 100 blocks in the list, I hope you are not talking about unique icons for each block
I experimented before with icons by the way. But the color is also some kind of behavioral code. Color + Icon... double standard, what is the point? I also tried with different shapes of the blocks. For example, some blocks can be sqare, others can have triangle left/right sides. But I decided that it's good enough to be the way it is now.Someone else with design opinion?
-
RE: How to use multi-pairs in mt5 and mt4posted in Questions & Answers
Here is a block that can be used for something like multi-pairs: http://prntscr.com/c7gret It has one string parameter and symbol names are separated with ,
This block only causes the following blocks to run multiple times, each time with different symbol. The idea is that if in one EA you want to do the same thing with multiple symbols, to use only 1 group of blocks. Of course, if the EA is working in EURUSD, the block would run because of the ticks in EURUSD -
RE: Closing trades by indicatorposted in Bug Reports
Which EA doesn't work? SL and TP in brackets? Give me more information.
-
RE: change the color of a block usingposted in Questions & Answers
I never tried that, but if they wrote those rules here, it's probably possible https://docs.mql4.com/basis/types/integer/color
-
RE: handle=10 | error code=4806posted in Bug Reports
MQL5 is weirdly asynchronous and I often have unexpected problems with it. But if the error shows only once and then everything works, it's not a big problem
-
RE: Ex4 Indicatorposted in Questions & Answers
http://prntscr.com/c61w5n
http://prntscr.com/c61wcdBoth indicators give you value of 0 when their buffer is not active. Put them into "Trace" block and you will see. You decide how to use them

-
RE: change the color of a block usingposted in Questions & Answers
"color" is an integer data type, the values are integer (whole) numbers. Here all colors are listed: https://docs.mql4.com/constants/objectc ... /webcolors Yes, they appear as text values, but these are all names of predefined constants in MQL4
-
RE: Variable compilation errorposted in Questions & Answers
bool instead of boolean
true instead of True -
RE: appearing several times the same indicatorposted in Questions & Answers
Do you have the same problem with other indicators?
-
RE: My first tryposted in Questions & Answers
Depends on the Magic number. Manual trades/orders have Magic number of 0. EAs should make trades/orders with different number, but they can also work with trades/orders with Magic number of 0.
Try one of these: http://prntscr.com/c5e24v
If you want the EA to only control manual trades/orders, the easiest is to set the Magic to 0.
I still don't get these AND and OR questions
But in blocks like "No trade" or "No pending order" there are few filter options. -
RE: Creating a scrip to buy.posted in Questions & Answers
Funny, no one ever before reported such problem, it looks that it's only you who decided to make MT5 Script
I think it works now -
RE: Problem with selection of multiple groups in block - on trade new trade openedposted in Bug Reports
"1,2" was not possible in "on Trade". I think that it works now.
-
RE: Creating a scrip to buy.posted in Questions & Answers
Connect this block with "Pass". In a block is not connected, it is excluded from the final .mq4/.ex4 file