"n" means number of passes, number of times you run this block. Better try "Once per minutes" or "Once per bar", something like this
Posts made by fxDreema
-
RE: Help with trailing stop[FIXED], another questionposted in Questions & Answers
-
RE: How to create pop-up alert/message when something happensposted in Questions & Answers
Write something here: http://prntscr.com/6ypiia
Also, check this example: https://fxdreema.com/demo/mt4-wrong-closing-rule
-
RE: How do I concatinate a string to a string variable for commeposted in Questions & Answers
It's with double-double quotes "" + and + "". Why? Because

-
RE: More comlex manual and support stuff for newcomersposted in Bug Reports
Descriptions like this actually existed, but I disabled them because of some bugs... and because the information was not full. So I'm trying to give better names for the parameters.
I also abandoned the current version of fxDreema, because I decided to fully rewrite it. This was 1 year ago
Why am I so slow... because meanwhile I also discover and learn different technologies and there is always something that can be done better. Also because the source code of fxDreema is pretty complex. I just wanted to put everything in order, so then I can easily put new updates.I don't know why, for some reason I have difficulties to write official descriptions and explanations
Maybe I need someone else to help me with this project, but I don't have friends that understand programming.With 1380 active members my head will explode, so I'm not sure that I really want this

There are already shortcuts for MetaTrader itself, I don't think that these can be overwritten. But for single keys it should work.
-
RE: How do I concatinate a string to a string variable for commeposted in Questions & Answers
This is ugly, but... https://fxdreema.com/shared/1RTr8YOwe The trick here is to use "" + in the beginning and + "" at the end.
This also can happen with "Custom MQL4 code"The problem with strings is that in the code they must be inside " ", but in the generator I decided to add " and " later, when the project is generated. Otherwise people will always ask me why do they have errors when they write something like Hello, World without " ".
Maybe I can just extend the Print block with few strings. I also want to glue some strings together in this block.
If you only want to check some values while the EA is tested, I can suggest this approach (I'm using this very often now and I like it) - to pause the backtest when you want to see values: https://fxdreema.com/shared/ebrPtDWtd
-
RE: empty_value in custom indicatorposted in Questions & Answers
"Condition" will not work this way anymore. I decided to make it in a way to not pass at all if the value of one of it's two sides equals to EMPTY_VALUE. But you can try this block called "Indicator is invisible"
-
RE: More comlex manual and support stuff for newcomersposted in Bug Reports
So.... what question do you have that is not located here: https://fxdreema.com/examples or here: https://fxdreema.com/documentation/

Active subscribers at the moment: 138. No marketing activities
I have plans to make some videos and I even updated the documentation a little bit recently 
-
RE: Help with trailing stop[FIXED], another questionposted in Questions & Answers
Where can you see Trailing take profit? There is an option to trail Take-Profit in the "Trailing stop (each trade)" block, but there is no block like "Trailing take profit". So, this option is the reverse of trailing Stop-Loss. Yes, the block's name contain the word "stop", but you can imagine that it means either SL or TP.
To set or not initial stops... Depends on "Start" option in "Trailing stop (each trade)". By default it does not matter if the trade has initial stops or not.
-
RE: Local ver. export issue with directoriesposted in Bug Reports
Don't use the /MQL4 part in paths
-
RE: indicator current valueposted in Questions & Answers
Candles are built over the Bid price. Look in this block called "Condition", you can find Ask, Bid, Candle Close,Open,High,Low... many things
-
RE: iCustom indicator help, no open order..posted in Questions & Answers
dscoles, only if you have those constants defined in fxDreema, otherwise you will see error messages saying that they does not exists. Yes, you can do it like this: HULL_PERIOD,HULL_METHOD,HULL_PRICE. Whatever you put in this input field, it goes in the output code directly. By the way, every input field accepts 100% MQL4 code.
switch3880, I don't really understand your questions

-
RE: Understanding Chart (work) Flowposted in Questions & Answers
__
I must admit I originally thought that once entering a 'chain', the EA would stop if it failed a Condition, then jump to the next 'chain' according the Number. This felt logical, but I soon realised it did not work this way.
[/quote:78ewjnqs]
But it works that way. Numbers normally does not matter. Only when you have parallel connections, when you have 2 or more paths ahead, only then the first path to be taken it the one with lower number. -
RE: Questions on Drawing on Chartposted in Questions & Answers
Here I created an example of the 4 ways to create/update objects. To delete them there is a block Delete objects and there you can filter them by name. The alternative to this is For each Object -> delete

