Actually you don't need block 29
Posts made by fxDreema
-
RE: Timeframe Constant (input)posted in Questions & Answers
When you save Constants/Variables, some checks and fixes are done. Checks... because many things needs to be checked, and fixes... because people do things against them and something should fix their errors.
What was your error? It's right here, the very fist letter of False: http://prntscr.com/6d0njg
Yes, %(#0000FF)[false] is one of the two possible values for every boolean values, but it's %(#0000FF)[false], not False. Lowercase! If you try False in MQL4/MQL5 it will give you this error:
__%(#FF0000)['False' - undeclared identifier][/quote:1uu8j1l0]In short, **False **(with capital letter) is considered string. In MQL4/MQL5 this word is not the same as the keyword %(#0000FF)[false].
-
RE: Timeframe Constant (input)posted in Questions & Answers
It works for me. Just type true or false (lowercase) under Value
-
RE: See the result of "averageprofit from "n" trades"posted in Questions & Answers
There is no way to assign that value. I have plan to do something else for that... some day

-
RE: order managerposted in Questions & Answers
http://prntscr.com/6cif2g
Try "Manually opened" here
-
RE: Timeframe Constant (input)posted in Questions & Answers
Let's see what the other people will say
I'm not completely sure how it will be better - with drop-down or with free input field. But one is for sure, exotic data types must be available. -
RE: Timeframe Constant (input)posted in Questions & Answers
Also put proper value for this data type: http://prntscr.com/6c6iwm
-
RE: Timeframe Constant (input)posted in Questions & Answers
I unlocked this field. It's not really intuitive now for all the people that does not know what is this, but I will deal with this later

-
RE: Timeframe Constant (input)posted in Questions & Answers
I see, the compiler wants it to be exactly ENUM_TIMEFRAMES. I will see what can I do for this.
-
RE: Alert/Comment Message Text Labelsposted in Bug Reports
I think it's ok for me What are you doing exactly?
-
RE: Timeframe Constant (input)posted in Questions & Answers
Timeframes are integer (whole number) values: http://docs.mql4.com/constants/chartcon ... timeframes As you can see, there are also predefined constants that can be used, like PERIOD_M1 and so on...
Well, their datatype appears to be ENUM_TIMEFRAMES, but you can't set this in fxDreema right now. But int or double should work, everything that is numeric. -
RE: 2 questionsposted in Questions & Answers
You can use some time filter, but I can't guarantee the result. If for some technical reason there are no ticks around this time, you will miss it completely.
-
RE: Draw fibonacciposted in Questions & Answers
Here is an example with function to set parameters of levels (FiboLevelsSet): http://docs.mql4.com/constants/objectco ... t/obj_fibo
This function suggests that we can set unique color, style and width for each level, but I can't get this result - all my levels are the same color, style and width. -
RE: Draw fibonacciposted in Questions & Answers
I decided that you want to put different color for each level
You are right, I have missed those parameters and I will add them. -
RE: Memory stuffposted in Questions & Answers
Sometimes I must admit that fxDreema can't help. But I found some custom indicator as an example of how it should be done: https://www.mql5.com/en/code/10102 This is 2 indicators - one to write the data and another to read it and print it.
And I'm not even convinced of doing this using EAs. Evene if I create a block to read the data and print it with lines, this will be only imitation of what a normal indicator is supposed to do.
If we are talking about arrays... if you have some idea how to make it easier for people to work with arrays, knowing that many of them does not even know what the word "variable" means
The truth is that I should create a custom indicators bulder, but I always end up doing something else
At the moment I am preparing the website to move it to a new server 
-
RE: Memory stuffposted in Questions & Answers
This idea is even worse - read indicators, writing data to a file, then read it and draw tens of objects on the chart. And doing that on every tick. This is SLOW. There is a short way - custom indicator. But fxDreema is not indicators builder

In a custom indicator you can set some options - colors, buffers, the way indicator looks - and then put some mathematical calculations. I will suggest to get some simple indicator and play with it for a while. If nothing else, it's funny and you will learn something new
